瀏覽代碼

[설정][Common] 설정 토스트 팝업창 구현

Hasemi 7 年之前
父節點
當前提交
158f84ed24
共有 1 個文件被更改,包括 49 次插入0 次删除
  1. 49 0
      app/src/main/res/layout/setting_toast_pop_up.xml

+ 49 - 0
app/src/main/res/layout/setting_toast_pop_up.xml

@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout
+  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">
+
+  <LinearLayout
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:layout_alignParentBottom="true"
+    android:layout_gravity="bottom"
+    android:background="@color/C333333"
+    android:orientation="vertical"
+    >
+
+    <LinearLayout
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:layout_marginStart="25dp"
+      android:layout_marginTop="18dp"
+      android:layout_marginEnd="25dp"
+      android:layout_marginBottom="18dp"
+      android:orientation="vertical">
+
+      <TextView
+        android:id="@+id/setting_toast_title"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_marginBottom="9dp"
+        android:lineSpacingExtra="4sp"
+        android:text="@string/special_code_confirm_success"
+        android:textColor="@color/CFFFFFF"
+        android:textSize="12sp"
+        />
+
+      <TextView
+        android:id="@+id/setting_toast_detail"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:lineSpacingExtra="4sp"
+        android:text="@string/special_code_confirm_success_detail"
+        android:textColor="@color/C999999"
+        android:textSize="12sp"
+        />
+
+    </LinearLayout>
+  </LinearLayout>
+</RelativeLayout>