keymapping_item.xml 814 B

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