17 lines
664 B
XML
17 lines
664 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical">
|
|
|
|
<!-- Details button -->
|
|
<ImageView
|
|
android:id="@+id/deviceDetails"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:padding="8dip"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:src="@drawable/ic_settings"
|
|
android:contentDescription="@string/bluetooth_device_details" />
|
|
|
|
</LinearLayout> |