keymapping_item.xml 978 B

12345678910111213141516171819202122232425262728
  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="wrap_content"
  5. android:orientation="horizontal" >
  6. <TextView
  7. android:id="@+id/tv_key"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:text="Key"
  11. android:gravity="center_vertical"
  12. android:layout_weight="1"
  13. android:textStyle="bold"
  14. android:textColor="#FF000000"
  15. android:background="@drawable/detail_item"/>
  16. <TextView
  17. android:id="@+id/tv_value"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:gravity="center_vertical"
  21. android:text="Value"
  22. android:layout_weight="1"
  23. android:textColor="#FF000000"
  24. android:background="@drawable/detail_item"/>
  25. </LinearLayout>