<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/size_dp_10" android:background="@color/white" android:divider="@color/divider_gray"> <LinearLayout android:id="@+id/item_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:id="@+id/leavel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="优秀" android:textColor="@color/textGreen" android:textSize="@dimen/sp_16" /> <TextView android:id="@+id/txt_info" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:text="课堂纪律-上课发言" android:textColor="@color/textGreen" android:textSize="@dimen/sp_16" /> <TextView android:id="@+id/count" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="right" android:text="+4" android:textColor="@color/textGreen" android:textSize="@dimen/sp_16" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:orientation="horizontal"> <TextView android:id="@+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="沈小东 二年(2)班" /> <TextView android:id="@+id/time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="right" android:text="2018-03-13 18:30" /> </LinearLayout> </LinearLayout> </LinearLayout> </LinearLayout>