Android ListView常用小技巧汇总

2019-12-10 18:37:36王振洲

test_item.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://www.easck.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:orientation="vertical"
 android:paddingLeft="15dp"
 android:layout_marginTop="5dp"
 android:layout_marginBottom="5dp">

 <TextView
  android:id="@+id/item_title"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="Hello World!" />

 <TextView
  android:id="@+id/item_content"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginTop="5dp"
  android:text="Hello World!" />
</LinearLayout>

以上就是搜集的Android ListView常用小技巧全部内容,希望对大家的学习有所帮助。