From 80faceb86399017851f9f72feaaef868a37ff23f Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期五, 26 三月 2021 10:50:35 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/lss' into temp-wxr --- HDL-ON_Android/Resources/layout/dialog_tip.xml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/HDL-ON_Android/Resources/layout/dialog_tip.xml b/HDL-ON_Android/Resources/layout/dialog_tip.xml new file mode 100644 index 0000000..e1bad06 --- /dev/null +++ b/HDL-ON_Android/Resources/layout/dialog_tip.xml @@ -0,0 +1,48 @@ +锘�<?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> \ No newline at end of file -- Gitblit v1.8.0