customservicedialog.xml 2.4 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingTop="25.0dip"
    android:background="@drawable/abc_dialog_material_background_light">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="@dimen/text_size_18"
        android:textColor="@color/black"
        android:gravity="center"
        android:text="@string/title_remind"
        />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="@dimen/text_size_14"
        android:gravity="center"
        android:id="@+id/txtphone"
        android:text="@string/custom_content"
        android:textColor="@color/black"
        android:layout_marginTop="8.0dip"
        />
    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_marginTop="20.0dip"
        android:background="@color/grey" />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="40.0dip"
            android:layout_weight="1"
            android:textSize="@dimen/text_size_18"
            android:gravity="center"
            android:textColor="@color/app_blue"
            android:text="@string/button_submit_calcle"
            android:id="@+id/custom_cancel"
            android:focusable="true"
            android:background="@drawable/dialog_cs_selector"/>
        <View
            android:layout_width="1px"
            android:layout_height="match_parent"

            android:background="@color/grey" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textSize="@dimen/text_size_18"
            android:gravity="center"
            android:textColor="@color/app_blue"
            android:text="@string/button_submit_entry"
            android:id="@+id/custom_confrim"
            android:focusable="true"
            android:background="@drawable/dialog_cs_selector"/>
    </LinearLayout>

</LinearLayout>