<?xml version="1.0" encoding="utf-8"?>
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white" >
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical" >
|
|
<com.lcjian.library.util.RefreshLayout
|
android:id="@+id/rl_review"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1">
|
|
<ListView
|
android:id="@+id/lv_review"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:dividerHeight="1dp"></ListView>
|
</com.lcjian.library.util.RefreshLayout>
|
|
<LinearLayout
|
android:id="@+id/tv_review_layout"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="vertical" >
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.6dp"
|
android:background="@color/gray" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_margin="6dp"
|
android:background="@drawable/tv_review_edit"
|
android:gravity="center_vertical"
|
android:text="@string/review_edit"
|
android:textColor="@color/gray"
|
android:textSize="14.0sp" />
|
</LinearLayout>
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/tv_no_review"
|
style="@style/TextGrayNormal"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:layout_marginBottom="20dp"
|
android:text="@string/no_review"
|
android:visibility="gone" />
|
|
</FrameLayout>
|