模拟新闻 APP 的界面
1)写 ListView 之前先写布局:
这里有两种 Item 的布局:
1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="100dp" 5 android:padding="10dp"> 6 7 8 <ImageView 9 android:layout_width="100dp" 10 android:layout_height="60dp" 11 android:id="@+id/imageView" 12 android:background="@mipmap/ic_launcher" 13 android:layout_centerVertical="true" 14 android:layout_alignParentRight="true" /> 15 16 <TextView 17 android:layout_width="wrap_content" 18 android:layout_height="wrap_content" 19 android:text="New Text" 20 android:id="@+id/tv_title" 21 android:maxLines="3" 22 android:layout_marginRight="10dp" 23 android:layout_alignParentTop="true" 24 android:layout_alignParentLeft="true" 25 android:layout_toLeftOf="@+id/imageView" /> 26 27 <TextView 28 android:layout_width="wrap_content" 29 android:layout_height="wrap_content" 30 android:textAppearance="?android:attr/textAppearanceSmall" 31 android:text="Small Text" 32 android:id="@+id/tv_time" 33 android:layout_alignParentBottom="true" 34 android:layout_alignParentLeft="true"/> 35 </RelativeLayout>