group_layout.xml 997 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" >
  5. <TextView
  6. android:id="@+id/gtv"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_marginLeft="10dp"
  10. android:layout_centerVertical="true"
  11. android:textSize="@dimen/textsize_22"
  12. />
  13. <ImageView
  14. android:id="@+id/gv"
  15. android:layout_alignParentRight="true"
  16. android:layout_marginRight="5dp"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_centerVertical="true"
  20. />
  21. <View
  22. android:id="@+id/groupDividerV"
  23. android:layout_width="fill_parent"
  24. android:layout_alignParentBottom="true"
  25. android:layout_height="1dp"
  26. android:background="@color/text_gray" />
  27. </RelativeLayout>