keymapping_item.xml 900 B

1234567891011121314151617181920212223242526
  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:background="@drawable/detail_item"/>
  15. <TextView
  16. android:id="@+id/tv_value"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:gravity="center_vertical"
  20. android:text="Value"
  21. android:layout_weight="1"
  22. android:background="@drawable/detail_item"/>
  23. </LinearLayout>