|
|
@@ -1,31 +1,29 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:background="@color/white"
|
|
|
- card_view:contentPadding="5dp">
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tvTime"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:orientation="vertical">
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:paddingLeft="2dp" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tvTime"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content" />
|
|
|
-
|
|
|
- <com.xzjmyk.pm.activity.view.MyListView
|
|
|
- android:id="@+id/listview"
|
|
|
- android:layout_width="fill_parent"
|
|
|
- android:layout_height="fill_parent"
|
|
|
- android:layout_below="@+id/multi_praise_tv"
|
|
|
- android:divider="@color/item_line"
|
|
|
- android:paddingTop="5dp"
|
|
|
- android:scrollbarSize="0dp"
|
|
|
- android:scrollbars="none|vertical" />
|
|
|
- </LinearLayout>
|
|
|
-</android.support.v7.widget.CardView>
|
|
|
+ <com.xzjmyk.pm.activity.view.MyListView
|
|
|
+ android:id="@+id/listview"
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:layout_below="@+id/multi_praise_tv"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:divider="@color/item_line"
|
|
|
+ android:paddingTop="5dp"
|
|
|
+ android:scrollbarSize="0dp"
|
|
|
+ android:scrollbars="none|vertical" />
|
|
|
+</LinearLayout>
|