Newer
Older
dxcgt_app / app / src / main / res / layout / contact.xml
wangxitong on 12 Jan 2021 1 KB first commit
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/style_main_layout" >

    <view
        android:id="@+id/titlebar"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        class="com.smartdot.cgt.view.TitleBar" >
    </view>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:padding="8dip" >

        <ListView
            android:id="@+id/listContact"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="8dip"
            android:cacheColorHint="#00000000"
            android:choiceMode="singleChoice"
            android:divider="#00000000"
            android:dividerHeight="8dip"
            android:listSelector="@drawable/list_selector" >
        </ListView>
    </LinearLayout>

    <LinearLayout
        android:id="@+id/panelCheckDetial"
        style="@style/style_foot_bar" >

        <Button
            android:id="@+id/btnAddContact"
            style="@style/style_below_button"
            android:text="@string/btn_contact_add" >
        </Button>

        <Button
            android:id="@+id/btnDeleteContact"
            style="@style/style_below_button"
            android:text="@string/btn_contact_delete" >
        </Button>
    </LinearLayout>

</LinearLayout>