ttw_gift.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:layout_marginTop="10dip"
  6. android:padding="25dip"
  7. android:orientation="vertical"
  8. >
  9. <RelativeLayout
  10. android:id="@+id/ll_gift"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:background="@drawable/ttw_edit_bg"
  14. >
  15. <ListView
  16. android:id="@+id/lv_gift"
  17. android:layout_width="fill_parent"
  18. android:layout_height="match_parent"
  19. android:divider="@color/gray1"
  20. android:focusable="true"
  21. android:listSelector="@drawable/ttw_pw_list_selector"
  22. android:layout_marginBottom="60dip"
  23. android:paddingLeft="5dip"
  24. android:paddingRight="5dip" />
  25. <TextView
  26. android:id="@+id/tv_back"
  27. android:layout_width="80dip"
  28. android:layout_height="42dip"
  29. android:background="@drawable/ttw_login_in"
  30. android:gravity="center"
  31. android:layout_marginBottom="7dip"
  32. android:text="返回"
  33. android:layout_alignParentBottom="true"
  34. android:layout_centerHorizontal="true"
  35. android:textColor="@android:color/white"
  36. android:textSize="16dip" />
  37. </RelativeLayout>
  38. </LinearLayout>