2018-08-13 23:32:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:orientation="vertical"
|
2018-08-17 00:43:58 +00:00
|
|
|
android:paddingBottom="@dimen/row_padding"
|
2018-08-13 23:32:02 +00:00
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
2018-08-17 00:43:58 +00:00
|
|
|
android:paddingTop="@dimen/row_padding">
|
2018-08-13 23:32:02 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2018-08-15 17:06:50 +00:00
|
|
|
android:ellipsize="end"
|
2018-08-13 23:32:02 +00:00
|
|
|
android:textColor="@color/name"
|
|
|
|
android:textSize="16sp"
|
2018-08-15 17:06:50 +00:00
|
|
|
android:textStyle="bold"/>
|
2018-08-13 23:32:02 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/devpath"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/name"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/vidpid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:textColor="@color/info"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|