tmap/res/layout/scan_item_layout.xml
2022-06-10 21:38:30 +09:00

13 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
<RelativeLayout android:id="@id/right_side_layout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="@dimen/tmap_20dp" android:layout_alignParentRight="true" android:layout_centerVertical="true">
<ProgressBar android:id="@id/connecting_progress" android:layout_width="@dimen/tmap_20dp" android:layout_height="@dimen/tmap_20dp" android:layout_centerInParent="true" />
<TextView android:textSize="@dimen/tmap_13dp" android:textColor="@color/color_btn_detail" android:gravity="center" android:id="@id/remove_bonded_txt" android:background="@drawable/selector_btn_nugubtn" android:layout_width="@dimen/tmap_42dp" android:layout_height="@dimen/tmap_27dp" android:text="@string/str_tmap_common_delete" android:layout_centerInParent="true" />
</RelativeLayout>
<TextView android:textSize="@dimen/tmap_17dp" android:textColor="@color/color_000000" android:ellipsize="end" android:gravity="center_vertical" android:id="@id/scanned_info" android:paddingLeft="@dimen/tmap_30dp" android:paddingTop="@dimen/tmap_15dp" android:paddingBottom="@dimen/tmap_15dp" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginRight="@dimen/tmap_10dp" android:text="" android:maxLines="1" android:layout_toLeftOf="@id/right_side_layout" />
</RelativeLayout>
<View android:id="@id/scan_list_divider_full" android:background="@drawable/bg_main_line_g" android:layout_width="fill_parent" android:layout_height="@dimen/tmap_1dp" />
<View android:id="@id/scan_list_divider" android:background="@drawable/bg_main_line_g" android:layout_width="fill_parent" android:layout_height="@dimen/tmap_1dp" android:layout_marginLeft="@dimen/tmap_30dp" />
</LinearLayout>