You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
android:padding="6dip">
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginRight="2dip"
|
|
android:src="@drawable/machine" />
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="0dip"
|
|
android:layout_weight="1"
|
|
android:layout_height="fill_parent">
|
|
<TextView
|
|
android:id="@+id/device_name"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical" />
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1"
|
|
android:id="@+id/device_details"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee" />
|
|
</LinearLayout>
|
|
</LinearLayout> |