| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/mainLay"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/EFEFEF"
- android:orientation="vertical" >
- <include
- android:id="@+id/title"
- layout="@layout/fragment_title" />
- <FrameLayout
- android:id="@+id/framelogread"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:visibility="gone" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:text="无数据"
- android:textSize="@dimen/textsize_50" />
- </FrameLayout>
- <RelativeLayout
- android:id="@+id/listlay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/title" >
- <!--
- <ListView
- android:id="@+id/listview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="#f0f0f0" />
- -->
- <com.dongkesoft.ibossmini.utils.XListViewNew
- android:id="@+id/listview"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:cacheColorHint="#00000000"
- android:divider="@null"
- android:fastScrollEnabled="true"
- android:focusable="true"
- android:listSelector="@drawable/list_null" >
- </com.dongkesoft.ibossmini.utils.XListViewNew>
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/pinglunLay"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:background="@color/white"
- android:visibility="gone" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:orientation="horizontal" >
- <LinearLayout
- android:id="@+id/commentlay"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_weight="1"
- android:orientation="vertical" >
- <EditText
- android:id="@+id/commenttxt"
- android:layout_width="fill_parent"
- android:layout_height="40dp"
- android:layout_marginLeft="10dp"
- android:background="@null"
- android:maxLength="200"
- android:textSize="@dimen/textsize_16" />
- <View
- android:layout_width="fill_parent"
- android:layout_height="1dp"
- android:layout_marginBottom="2dp"
- android:layout_marginLeft="15dp"
- android:background="@color/text_gray" />
- </LinearLayout>
- <Button
- android:id="@+id/sendBtn"
- android:layout_width="60dp"
- android:layout_height="40dp"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="10dp"
- android:layout_toRightOf="@id/commentlay"
- android:background="@drawable/send_bt_bg_selector"
- android:text="发送"
- android:textSize="@dimen/textsize_16" />
- </LinearLayout>
- </RelativeLayout>
- </RelativeLayout>
|