pairing_setting.xml 3.27 KB
Newer Older
1 2 3 4 5 6
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
7
    tools:context="jp.agentec.abook.abv.ui.home.activity.BlePairingSettingActivity">
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
    <!--android:background="@drawable/setting_bg"-->
    <!--android:layout_height="0dp"-->
    <!--android:background="@drawable/setting_bg"-->

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <RelativeLayout
            android:id="@+id/toolbar_layout"
            style="@style/OperationSearchToolBar"
            android:layout_width="match_parent"
            android:layout_height="50dp">

            <TextView
24
                android:id="@+id/device_toolbar_title"
25 26 27 28 29 30
                style="@style/DialogToolBarTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"
                android:textColor="@color/edt_text"
31
                android:textSize="20sp" />
32 33 34 35 36 37 38 39 40 41

            <ImageButton
                android:id="@+id/close_btn"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:background="@drawable/ic_operation_close"
                android:onClick="onClickCloseView" />

42 43 44 45 46 47 48
            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true">

49 50 51 52 53 54 55 56 57
                <Button
                    android:id="@+id/btn_reload"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:layout_marginRight="5dp"
                    android:background="@android:color/transparent"
                    android:text="Scan"
                    android:textSize="18sp" />
58 59
            </LinearLayout>

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
        </RelativeLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_marginBottom="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:layout_weight="1"
            android:orientation="vertical">

            <View
                android:layout_width="fill_parent"
                android:layout_height="2dp"
                android:layout_marginLeft="8dp"
                android:layout_marginRight="8dp" />

            <ListView
                android:id="@+id/devicelist"
79 80
                android:layout_width="match_parent"
                android:layout_height="match_parent"
81 82 83 84 85 86 87 88
                android:layout_margin="8dp"
                android:layout_weight="1" />


        </LinearLayout>
    </LinearLayout>

</LinearLayout>