jmitemcountlist.xml 988 B

12345678910111213141516171819202122232425262728293031
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content"
  4. android:orientation="horizontal"
  5. >
  6. <View
  7. android:layout_width="match_parent"
  8. android:layout_height="1dp"
  9. android:alpha="0.5"
  10. android:background="#d6d6d6" />
  11. <TextView
  12. android:padding="5sp"
  13. android:id="@+id/TextView"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_alignParentLeft="true"
  17. android:layout_centerVertical="true"
  18. android:textColor="@color/jmfont_black"
  19. android:textSize="15sp" />
  20. <ImageView
  21. android:id="@+id/ibcancel"
  22. android:layout_width="30dp"
  23. android:layout_height="30dp"
  24. android:layout_alignParentRight="true"
  25. android:layout_centerVertical="true"
  26. android:background="@drawable/jm_cancel" />
  27. </RelativeLayout>