<?xml version="1.0" encoding="UTF-8" ?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/dialog_background">
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="@color/color_default"
|
android:textSize="@dimen/tipTitleTextSize"
|
android:gravity="center"
|
android:layout_marginTop="24dp"
|
android:layout_marginBottom="12dp"
|
android:fontFamily="sans-serif-black"
|
android:text="@string/video_tip"/>
|
|
<TextView
|
android:id="@+id/tv_content"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="13sp"
|
android:gravity="center"
|
android:textColor="@color/color_default"
|
android:text="@string/video_hang_up"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginTop="24dp"
|
android:background="@color/color_disable"/>
|
|
<TextView
|
android:id="@+id/tv_ok"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingTop="13dp"
|
android:paddingBottom="13dp"
|
android:gravity="center"
|
android:fontFamily="sans-serif-medium"
|
android:textSize="16sp"
|
android:textColor="#2175d8"
|
android:background="@drawable/sure_background_def"
|
android:text="@string/video_confirm"/>
|
</LinearLayout>
|