这个报错是因为Android布局的控件
<view
android:layout_width="match_parent"
android:layout_height="1dp"/>
无法识别,要写成 <View .... />
V要大写,小写编译时不识别
这个报错是因为Android布局的控件
<view
android:layout_width="match_parent"
android:layout_height="1dp"/>
无法识别,要写成 <View .... />
V要大写,小写编译时不识别