|
@@ -1,86 +1,93 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
|
+<com.atmob.keyboard_android.widget.ClippedLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="@dimen/keyboard_height"
|
|
android:layout_height="@dimen/keyboard_height"
|
|
|
- tools:background="@mipmap/bg_keyboard">
|
|
|
|
|
-
|
|
|
|
|
- <ImageView
|
|
|
|
|
- android:id="@+id/back_btn"
|
|
|
|
|
- android:layout_width="32dp"
|
|
|
|
|
- android:layout_height="32dp"
|
|
|
|
|
- android:layout_marginStart="12dp"
|
|
|
|
|
- android:layout_marginTop="65dp"
|
|
|
|
|
- android:src="@mipmap/ic_back_btn"
|
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
-
|
|
|
|
|
- <androidx.core.widget.NestedScrollView
|
|
|
|
|
|
|
+ android:background="@mipmap/bg_keyboard"
|
|
|
|
|
+ app:cl_clip_top_offset="60dp">
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:fillViewport="true"
|
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/back_btn">
|
|
|
|
|
|
|
+ android:layout_marginTop="60dp">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/back_btn"
|
|
|
|
|
+ android:layout_width="32dp"
|
|
|
|
|
+ android:layout_height="32dp"
|
|
|
|
|
+ android:layout_marginStart="12dp"
|
|
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
|
|
+ android:src="@mipmap/ic_back_btn"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical">
|
|
|
|
|
|
|
+ android:fillViewport="true"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/back_btn">
|
|
|
|
|
|
|
|
- <LinearLayout style="@style/setting_item_row">
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:id="@+id/setting_custom_person_layout"
|
|
|
|
|
- style="@style/setting_item">
|
|
|
|
|
|
|
+ <LinearLayout style="@style/setting_item_row">
|
|
|
|
|
|
|
|
- <ImageView
|
|
|
|
|
- style="@style/setting_item_icon"
|
|
|
|
|
- android:src="@mipmap/ic_custom" />
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/setting_custom_person_layout"
|
|
|
|
|
+ style="@style/setting_item">
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- style="@style/setting_item_text"
|
|
|
|
|
- android:text="@string/setting_custom_person" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ style="@style/setting_item_icon"
|
|
|
|
|
+ android:src="@mipmap/ic_custom" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:id="@+id/setting_market_layout"
|
|
|
|
|
- style="@style/setting_item2">
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/setting_item_text"
|
|
|
|
|
+ android:text="@string/setting_custom_person" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
- <ImageView
|
|
|
|
|
- style="@style/setting_item_icon"
|
|
|
|
|
- android:src="@mipmap/ic_market" />
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/setting_market_layout"
|
|
|
|
|
+ style="@style/setting_item2">
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- style="@style/setting_item_text"
|
|
|
|
|
- android:text="@string/setting_market" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ style="@style/setting_item_icon"
|
|
|
|
|
+ android:src="@mipmap/ic_market" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- style="@style/setting_item_row2"
|
|
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/back_btn">
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/setting_item_text"
|
|
|
|
|
+ android:text="@string/setting_market" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
- android:id="@+id/setting_unlock_vip_layout"
|
|
|
|
|
- style="@style/setting_item">
|
|
|
|
|
|
|
+ style="@style/setting_item_row2"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/back_btn">
|
|
|
|
|
|
|
|
- <ImageView
|
|
|
|
|
- style="@style/setting_item_icon"
|
|
|
|
|
- android:src="@mipmap/ic_vip" />
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/setting_unlock_vip_layout"
|
|
|
|
|
+ style="@style/setting_item">
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- style="@style/setting_item_text"
|
|
|
|
|
- android:text="@string/setting_unlock_vip" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ style="@style/setting_item_icon"
|
|
|
|
|
+ android:src="@mipmap/ic_vip" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- style="@style/setting_item2"
|
|
|
|
|
- android:visibility="invisible" />
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/setting_item_text"
|
|
|
|
|
+ android:text="@string/setting_unlock_vip" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ style="@style/setting_item2"
|
|
|
|
|
+ android:visibility="invisible" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
- </LinearLayout>
|
|
|
|
|
- </androidx.core.widget.NestedScrollView>
|
|
|
|
|
-</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
+</com.atmob.keyboard_android.widget.ClippedLayout>
|