activity_factory_transfer_in.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/parentRel"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/background" >
  7. <include
  8. android:id="@+id/titleset"
  9. layout="@layout/fragment_title" />
  10. <RelativeLayout
  11. android:id="@+id/bottomLay"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_alignParentBottom="true" >
  15. <Button
  16. android:id="@+id/btnSaveFT"
  17. android:layout_width="fill_parent"
  18. android:layout_height="45dp"
  19. android:background="@drawable/login_btn_selector"
  20. android:text="保存 "
  21. android:textColor="@color/white"
  22. android:textSize="@dimen/textsize_24" />
  23. </RelativeLayout>
  24. <LinearLayout
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_above="@id/bottomLay"
  28. android:layout_below="@id/titleset"
  29. android:orientation="vertical" >
  30. <ListView
  31. android:id="@+id/message_listview_ft"
  32. android:layout_width="fill_parent"
  33. android:layout_height="fill_parent"
  34. android:cacheColorHint="#00000000"
  35. android:divider="@null"
  36. android:listSelector="#00000000" />
  37. </LinearLayout>
  38. </RelativeLayout>