android一些小技巧

(1)ListActiviy要使用SetContentView需要在对应的布局里添加"@android:id/list",不然会报错

(2)画一条横线

    <View
        android:layout_width="fill_parent"
        android:layout_height="1dp"
        android:background="#C0C0C0" />

  

你可能感兴趣的