键盘ai角色,无数据显示2
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/stepTips"
|
||||
android:textSize="@dimen/sw_4sp"
|
||||
android:textSize="@dimen/sw_14sp"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_marginTop="@dimen/sw_18dp"
|
||||
android:textColor="#A1A1A1"
|
||||
|
||||
@@ -23,6 +23,16 @@
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent" />
|
||||
|
||||
<de.hdodenhof.circleimageview.CircleImageView
|
||||
android:id="@+id/key_airole"
|
||||
android:layout_width="@dimen/sw_34dp"
|
||||
android:layout_height="@dimen/sw_34dp"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:clickable="true"
|
||||
app:layout_constraintStart_toEndOf="@id/key_abc"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/key_vip"
|
||||
android:layout_width="@dimen/sw_115dp"
|
||||
|
||||
45
app/src/main/res/layout/airole_panel.xml
Normal file
45
app/src/main/res/layout/airole_panel.xml
Normal file
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<com.example.myapplication.keyboard.FixedHeightFrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/airole_panel_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:clickable="true"
|
||||
android:focusable="true">
|
||||
|
||||
<!-- 消息列表 -->
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/airole_panel_messages"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:clipToPadding="false"
|
||||
android:paddingTop="@dimen/sw_8dp"
|
||||
android:paddingBottom="@dimen/sw_8dp"
|
||||
android:overScrollMode="always" />
|
||||
|
||||
<!-- 未登录提示 -->
|
||||
<TextView
|
||||
android:id="@+id/airole_panel_login_hint"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_200dp"
|
||||
android:gravity="center"
|
||||
android:text="@string/Pop_up_window_ai_1"
|
||||
android:textColor="#999999"
|
||||
android:textSize="@dimen/sw_14sp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<!-- 关闭按钮(右上角,叠在消息列表上方) -->
|
||||
<ImageView
|
||||
android:id="@+id/airole_panel_close"
|
||||
android:layout_width="@dimen/sw_30dp"
|
||||
android:layout_height="@dimen/sw_30dp"
|
||||
android:layout_gravity="top|end"
|
||||
android:layout_marginTop="@dimen/sw_8dp"
|
||||
android:layout_marginEnd="@dimen/sw_8dp"
|
||||
android:padding="@dimen/sw_4dp"
|
||||
android:src="@android:drawable/ic_menu_close_clear_cancel"
|
||||
android:contentDescription="close"
|
||||
android:clickable="true"
|
||||
android:focusable="true" />
|
||||
|
||||
</com.example.myapplication.keyboard.FixedHeightFrameLayout>
|
||||
@@ -124,7 +124,7 @@
|
||||
android:gravity="center"
|
||||
android:layout_width="@dimen/sw_60dp"
|
||||
android:layout_marginTop="@dimen/sw_50dp"
|
||||
android:layout_height="@dimen/sw_8dp"
|
||||
android:layout_height="@dimen/sw_28dp"
|
||||
android:background="@drawable/round_bg_one">
|
||||
<ImageView
|
||||
android:id="@+id/add_first_icon"
|
||||
|
||||
@@ -61,6 +61,18 @@
|
||||
android:focusable="false" />
|
||||
</com.example.myapplication.ui.circle.GradientMaskLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/imeDismissOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="fill"
|
||||
android:background="@android:color/transparent"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:elevation="@dimen/sw_2dp"
|
||||
android:visibility="gone"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/inputOverlay"
|
||||
android:layout_width="match_parent"
|
||||
@@ -220,6 +232,46 @@
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@android:color/white"
|
||||
android:visibility="gone"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:importantForAccessibility="no"
|
||||
android:elevation="@dimen/sw_10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
<!-- 抽屉 -->
|
||||
<FrameLayout
|
||||
|
||||
@@ -16,13 +16,65 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="@drawable/login_bg">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rvTransactions"
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:overScrollMode="never"
|
||||
android:clipToPadding="false"
|
||||
android:paddingBottom="@dimen/sw_16dp" />
|
||||
android:orientation="vertical">
|
||||
|
||||
<include layout="@layout/layout_consumption_record_header" />
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rvTransactions"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:overScrollMode="never"
|
||||
android:clipToPadding="false"
|
||||
android:paddingBottom="@dimen/sw_16dp" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:importantForAccessibility="no">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
</FrameLayout>
|
||||
</LinearLayout>
|
||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
|
||||
@@ -305,6 +305,62 @@
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@android:color/white"
|
||||
android:visibility="gone"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:importantForAccessibility="no">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="top|center_horizontal"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<!-- 顶部“可点击的头部区域”,点击可展开/收起 -->
|
||||
<LinearLayout
|
||||
android:id="@+id/bottomSheetHeader"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_48dp"
|
||||
android:gravity="center"
|
||||
android:paddingTop="@dimen/sw_8dp"
|
||||
android:paddingBottom="@dimen/sw_8dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<!-- 小横条指示器 -->
|
||||
<View
|
||||
android:layout_width="@dimen/sw_40dp"
|
||||
android:layout_height="@dimen/sw_4dp"
|
||||
android:background="@drawable/bs_handle_bg" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<!-- 浮动按钮 -->
|
||||
|
||||
@@ -99,18 +99,32 @@
|
||||
android:layout_weight="1"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/nickname"
|
||||
android:text="@string/mine_username"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:maxLines="1"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_20sp" />
|
||||
android:gravity="center_vertical"
|
||||
orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/nickname"
|
||||
android:text="@string/mine_username"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:maxLines="1"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_20sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/vip_icon"
|
||||
android:layout_width="@dimen/sw_55dp"
|
||||
android:layout_height="@dimen/sw_19dp"
|
||||
android:layout_marginStart="@dimen/sw_5dp"
|
||||
android:layout_marginEnd="@dimen/sw_5dp"/>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
@@ -253,8 +267,8 @@
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_20dp"
|
||||
android:layout_height="@dimen/sw_24dp"
|
||||
android:layout_width="@dimen/sw_25dp"
|
||||
android:layout_height="@dimen/sw_29dp"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:layout_marginEnd="@dimen/sw_10dp"
|
||||
android:src="@drawable/ic_language" />
|
||||
|
||||
@@ -264,5 +264,42 @@
|
||||
android:layout_marginBottom="@dimen/sw_30dp"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
android:importantForAccessibility="no"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="top|center_horizontal"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
</com.example.myapplication.widget.NoHorizontalInterceptSwipeRefreshLayout>
|
||||
|
||||
@@ -20,14 +20,22 @@ xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/key_ai"
|
||||
android:layout_width="@dimen/sw_34dp"
|
||||
android:layout_height="@dimen/sw_34dp"
|
||||
android:textSize="12sp"
|
||||
android:textSize="@dimen/sw_12sp"
|
||||
android:textColor="#A9A9A9"
|
||||
android:clickable="true"
|
||||
android:gravity="center"/>
|
||||
|
||||
<de.hdodenhof.circleimageview.CircleImageView
|
||||
android:id="@+id/key_airole"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:layout_width="@dimen/sw_34dp"
|
||||
android:layout_height="@dimen/sw_34dp"
|
||||
android:clickable="true" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
|
||||
@@ -69,12 +69,57 @@
|
||||
android:background="@drawable/mykeyboard_bg"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_keyboard"
|
||||
<FrameLayout
|
||||
android:id="@+id/keyboardListContainer"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:overScrollMode="never"
|
||||
tools:listitem="@layout/item_keyboard_character" />
|
||||
android:minHeight="@dimen/sw_200dp">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_keyboard"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:overScrollMode="never"
|
||||
tools:listitem="@layout/item_keyboard_character" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:visibility="gone"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:importantForAccessibility="no">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
</FrameLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
@@ -13,70 +13,130 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="#F6F7FB"
|
||||
tools:context=".ui.shop.myskin.MySkin">
|
||||
<androidx.core.widget.NestedScrollView
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/contentContainer"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true"
|
||||
android:overScrollMode="never">
|
||||
android:orientation="vertical">
|
||||
<!-- 标题和返-->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
<!-- 标题和返回 -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:gravity="center_vertical">
|
||||
<!-- 返回按钮 -->
|
||||
<FrameLayout
|
||||
android:id="@+id/iv_close"
|
||||
android:layout_width="@dimen/sw_46dp"
|
||||
android:layout_height="@dimen/sw_46dp">
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_13dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/more_icons"
|
||||
android:rotation="180"
|
||||
android:scaleType="fitCenter" />
|
||||
</FrameLayout>
|
||||
android:orientation="horizontal"
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:gravity="center_vertical">
|
||||
<!-- 返回按钮 -->
|
||||
<FrameLayout
|
||||
android:id="@+id/iv_close"
|
||||
android:layout_width="@dimen/sw_46dp"
|
||||
android:layout_height="@dimen/sw_46dp">
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_13dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/more_icons"
|
||||
android:rotation="180"
|
||||
android:scaleType="fitCenter" />
|
||||
</FrameLayout>
|
||||
|
||||
<TextView
|
||||
<TextView
|
||||
android:id="@+id/tvTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/skin_title"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvEditor"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginEnd="@dimen/sw_4dp"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/skin_editor"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_13sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- 内容 -->
|
||||
<FrameLayout
|
||||
android:id="@+id/contentFrame"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true"
|
||||
android:overScrollMode="never">
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="@dimen/sw_200dp">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rvThemes"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:nestedScrollingEnabled="false"
|
||||
tools:listitem="@layout/item_myskin_theme"/>
|
||||
</FrameLayout>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@android:color/white"
|
||||
android:visibility="gone"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:importantForAccessibility="no">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/skin_title"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvEditor"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginEnd="@dimen/sw_4dp"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/skin_editor"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_13sp" />
|
||||
</LinearLayout>
|
||||
<ImageView
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<!-- 内容 -->
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rvThemes"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:nestedScrollingEnabled="false"
|
||||
tools:listitem="@layout/item_myskin_theme"/>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
<TextView
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
</FrameLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- 底部编辑栏 -->
|
||||
<!-- 底部编辑-->
|
||||
<LinearLayout
|
||||
android:id="@+id/bottomEditBar"
|
||||
android:layout_width="match_parent"
|
||||
|
||||
@@ -28,6 +28,13 @@
|
||||
android:textColor="#A9A9A9"
|
||||
android:gravity="center"
|
||||
android:clickable="true"/>
|
||||
|
||||
<de.hdodenhof.circleimageview.CircleImageView
|
||||
android:id="@+id/key_airole"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:layout_width="@dimen/sw_34dp"
|
||||
android:layout_height="@dimen/sw_34dp"
|
||||
android:clickable="true" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
|
||||
@@ -7,243 +7,288 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="#F6F7FB"
|
||||
tools:context=".ui.home.myotherpages.PersonalSettings">
|
||||
<!-- 内容 -->
|
||||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||||
android:id="@+id/swipeRefresh"
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<!-- -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true"
|
||||
android:overScrollMode="never">
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:background="#F8F8F8"
|
||||
android:orientation="vertical">
|
||||
<!-- 标题和返回 -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center_vertical">
|
||||
<!-- 返回按钮 -->
|
||||
<FrameLayout
|
||||
android:id="@+id/iv_close"
|
||||
android:layout_width="@dimen/sw_46dp"
|
||||
android:layout_height="@dimen/sw_46dp">
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_13dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/more_icons"
|
||||
android:rotation="180"
|
||||
android:scaleType="fitCenter" />
|
||||
</FrameLayout>
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:background="#F8F8F8"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center_vertical"
|
||||
android:clickable="true"
|
||||
android:focusable="true">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_marginEnd="@dimen/sw_49dp"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/personal_settings_title"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- 头像 -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_130dp"
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal">
|
||||
<de.hdodenhof.circleimageview.CircleImageView
|
||||
android:id="@+id/avatar"
|
||||
android:layout_width="@dimen/sw_88dp"
|
||||
android:layout_height="@dimen/sw_88dp"
|
||||
android:src="@drawable/default_avatar"
|
||||
android:elevation="@dimen/sw_1dp"
|
||||
android:clickable="true"
|
||||
android:focusable="true"/>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/iv_close"
|
||||
android:layout_width="@dimen/sw_46dp"
|
||||
android:layout_height="@dimen/sw_46dp">
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_18dp"
|
||||
android:layout_height="@dimen/sw_18dp"
|
||||
android:layout_marginStart="@dimen/_sw_22dp"
|
||||
android:layout_marginTop="@dimen/sw_34dp"
|
||||
android:elevation="@dimen/sw_2dp"
|
||||
android:src="@drawable/avatar_modification"
|
||||
android:scaleType="centerCrop"/>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- 修改 -->
|
||||
android:layout_width="@dimen/sw_13dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:layout_gravity="center"
|
||||
android:src="@drawable/more_icons"
|
||||
android:rotation="180"
|
||||
android:scaleType="fitCenter" />
|
||||
</FrameLayout>
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_marginEnd="@dimen/sw_49dp"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="Modify"
|
||||
android:text="@string/personal_settings_title"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_18sp" />
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- 其他设置 -->
|
||||
<LinearLayout
|
||||
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||||
android:id="@+id/swipeRefresh"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/sw_24dp"
|
||||
android:background="@drawable/settings"
|
||||
android:orientation="vertical">
|
||||
<!-- Nickname -->
|
||||
<LinearLayout
|
||||
android:id="@+id/row_nickname"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true"
|
||||
android:overScrollMode="never">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_16dp"
|
||||
android:text="@string/personal_settings_nickname"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:background="#F8F8F8"
|
||||
android:orientation="vertical">
|
||||
|
||||
<!-- ?? -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_130dp"
|
||||
android:padding="@dimen/sw_16dp"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal">
|
||||
<de.hdodenhof.circleimageview.CircleImageView
|
||||
android:id="@+id/avatar"
|
||||
android:layout_width="@dimen/sw_88dp"
|
||||
android:layout_height="@dimen/sw_88dp"
|
||||
android:src="@drawable/default_avatar"
|
||||
android:elevation="@dimen/sw_1dp"
|
||||
android:clickable="true"
|
||||
android:focusable="true"/>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_18dp"
|
||||
android:layout_height="@dimen/sw_18dp"
|
||||
android:layout_marginStart="@dimen/_sw_22dp"
|
||||
android:layout_marginTop="@dimen/sw_34dp"
|
||||
android:elevation="@dimen/sw_2dp"
|
||||
android:src="@drawable/avatar_modification"
|
||||
android:scaleType="centerCrop"/>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- ?? -->
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text="Modify"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textSize="@dimen/sw_18sp" />
|
||||
|
||||
<!-- ???? -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/sw_24dp"
|
||||
android:background="@drawable/settings"
|
||||
android:orientation="vertical">
|
||||
<!-- Nickname -->
|
||||
<LinearLayout
|
||||
android:id="@+id/row_nickname"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_16dp"
|
||||
android:text="@string/personal_settings_nickname"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/tv_nickname_value"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Nickname"
|
||||
android:gravity="end"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_9dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:tint="#AFAFAF"
|
||||
android:layout_marginStart="@dimen/sw_12dp"
|
||||
android:layout_marginEnd="@dimen/sw_16dp"
|
||||
android:src="@drawable/more_icons" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Gender -->
|
||||
<LinearLayout
|
||||
android:id="@+id/row_gender"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_16dp"
|
||||
android:text="@string/personal_settings_gender"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/tv_gender_value"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Gender"
|
||||
android:gravity="end"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_9dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:tint="#AFAFAF"
|
||||
android:layout_marginStart="@dimen/sw_12dp"
|
||||
android:layout_marginEnd="@dimen/sw_16dp"
|
||||
android:src="@drawable/more_icons" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- User ID -->
|
||||
<LinearLayout
|
||||
android:id="@+id/row_userid"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_16dp"
|
||||
android:text="UID"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/tv_userid_value"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="88888888"
|
||||
android:gravity="end"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_14dp"
|
||||
android:layout_height="@dimen/sw_14dp"
|
||||
android:tint="#AFAFAF"
|
||||
android:layout_marginStart="@dimen/sw_12dp"
|
||||
android:layout_marginEnd="@dimen/sw_16dp"
|
||||
android:src="@drawable/copy" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/noResultOverlay"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@android:color/white"
|
||||
android:visibility="gone"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:importantForAccessibility="no">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/tv_nickname_value"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Nickname"
|
||||
android:gravity="end"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_9dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:tint="#AFAFAF"
|
||||
android:layout_marginStart="@dimen/sw_12dp"
|
||||
android:layout_marginEnd="@dimen/sw_16dp"
|
||||
android:src="@drawable/more_icons" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
android:id="@+id/noResultImage"
|
||||
android:layout_width="@dimen/sw_175dp"
|
||||
android:layout_height="@dimen/sw_177dp"
|
||||
android:src="@drawable/no_search_result"
|
||||
android:scaleType="fitCenter"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" />
|
||||
|
||||
<!-- Gender -->
|
||||
<LinearLayout
|
||||
android:id="@+id/row_gender"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_16dp"
|
||||
android:text="@string/personal_settings_gender"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/tv_gender_value"
|
||||
android:layout_width="0dp"
|
||||
android:id="@+id/noResultText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Gender"
|
||||
android:gravity="end"
|
||||
android:gravity="center"
|
||||
android:textAlignment="center"
|
||||
android:text="@string/search_not_data"
|
||||
android:textSize="@dimen/sw_13sp"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_9dp"
|
||||
android:layout_height="@dimen/sw_13dp"
|
||||
android:tint="#AFAFAF"
|
||||
android:layout_marginStart="@dimen/sw_12dp"
|
||||
android:layout_marginEnd="@dimen/sw_16dp"
|
||||
android:src="@drawable/more_icons" />
|
||||
android:includeFontPadding="false" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- User ID -->
|
||||
<LinearLayout
|
||||
android:id="@+id/row_userid"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_64dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_16dp"
|
||||
android:text="UID"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/tv_userid_value"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="88888888"
|
||||
android:gravity="end"
|
||||
android:textColor="#1B1F1A"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:textSize="@dimen/sw_16sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="@dimen/sw_14dp"
|
||||
android:layout_height="@dimen/sw_14dp"
|
||||
android:tint="#AFAFAF"
|
||||
android:layout_marginStart="@dimen/sw_12dp"
|
||||
android:layout_marginEnd="@dimen/sw_16dp"
|
||||
android:src="@drawable/copy" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/sw_63dp"
|
||||
android:layout_marginTop="@dimen/sw_273dp"
|
||||
android:layout_marginBottom="@dimen/sw_20dp"
|
||||
android:gravity="center"
|
||||
android:text="Log Out"
|
||||
android:textColor="#FF0000"
|
||||
android:textSize="@dimen/sw_16sp"
|
||||
android:textStyle="bold"
|
||||
android:background="@drawable/settings"/>
|
||||
<!-- ````````` -->
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||
</FrameLayout>
|
||||
</FrameLayout>
|
||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||
</LinearLayout>
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
|
||||
@@ -23,6 +23,12 @@
|
||||
<!-- ai -->
|
||||
<TextView android:id="@+id/key_ai" android:layout_width="@dimen/sw_34dp" android:layout_height="@dimen/sw_34dp" android:textSize="@dimen/sw_12sp" android:textColor="#A9A9A9" android:gravity="center" android:clickable="true"/>
|
||||
|
||||
<de.hdodenhof.circleimageview.CircleImageView
|
||||
android:id="@+id/key_airole"
|
||||
android:layout_marginStart="@dimen/sw_10dp"
|
||||
android:layout_width="@dimen/sw_34dp"
|
||||
android:layout_height="@dimen/sw_34dp"
|
||||
android:clickable="true" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user