fix(community): 커뮤니티 고정글 메뉴 동작을 정리한다
This commit is contained in:
110
app/src/main/res/layout/dialog_creator_community_post_menu.xml
Normal file
110
app/src/main/res/layout/dialog_creator_community_post_menu.xml
Normal file
@@ -0,0 +1,110 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout 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"
|
||||
android:orientation="vertical"
|
||||
android:paddingVertical="25dp"
|
||||
tools:background="@color/black">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_menu_creator"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:paddingHorizontal="21dp">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_pin"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingVertical="8dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_pin"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_pin" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_pin"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="13.3dp"
|
||||
android:fontFamily="@font/medium"
|
||||
android:gravity="center"
|
||||
android:text="@string/screen_creator_community_pin"
|
||||
android:textColor="@color/color_e2e2e2"
|
||||
android:textSize="14.7sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_modify"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="21dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingVertical="8dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_make_message" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="13.3dp"
|
||||
android:fontFamily="@font/medium"
|
||||
android:gravity="center"
|
||||
android:text="@string/screen_audio_content_detail_edit"
|
||||
android:textColor="@color/color_e2e2e2"
|
||||
android:textSize="14.7sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_delete"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="21dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingVertical="8dp"
|
||||
tools:ignore="UseCompoundDrawables">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_trash_can" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="13.3dp"
|
||||
android:fontFamily="@font/medium"
|
||||
android:gravity="center"
|
||||
android:text="@string/screen_audio_content_detail_delete"
|
||||
android:textColor="@color/color_e2e2e2"
|
||||
android:textSize="14.7sp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_report"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/medium"
|
||||
android:paddingHorizontal="21.3dp"
|
||||
android:paddingVertical="8dp"
|
||||
android:text="@string/screen_audio_content_detail_report"
|
||||
android:textColor="@color/color_e2e2e2"
|
||||
android:textSize="14.7sp" />
|
||||
</LinearLayout>
|
||||
@@ -48,6 +48,7 @@
|
||||
android:textSize="14sp"
|
||||
tools:text="3일전" />
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
|
||||
@@ -50,6 +50,7 @@
|
||||
tools:text="3시간전" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_see_more"
|
||||
android:layout_width="wrap_content"
|
||||
|
||||
@@ -38,4 +38,15 @@
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_lock_bb"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_pin"
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_gravity="top|end"
|
||||
android:layout_margin="8dp"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/ic_pin"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible" />
|
||||
</FrameLayout>
|
||||
|
||||
@@ -87,6 +87,10 @@
|
||||
<string name="confirm">Confirm</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
|
||||
<!-- Creator community - pin/fixed menu -->
|
||||
<string name="screen_creator_community_pin">Pin to top</string>
|
||||
<string name="screen_creator_community_unpin">Unpin</string>
|
||||
|
||||
<!-- Settings - Language -->
|
||||
<string name="screen_settings_language">Language</string>
|
||||
<string name="settings_language_korean">Korean</string>
|
||||
|
||||
@@ -87,6 +87,10 @@
|
||||
<string name="confirm">確認</string>
|
||||
<string name="cancel">キャンセル</string>
|
||||
|
||||
<!-- Creator community - pin/fixed menu -->
|
||||
<string name="screen_creator_community_pin">最上部に固定</string>
|
||||
<string name="screen_creator_community_unpin">固定を解除</string>
|
||||
|
||||
<!-- Settings - Language -->
|
||||
<string name="screen_settings_language">言語設定</string>
|
||||
<string name="settings_language_korean">韓国語</string>
|
||||
|
||||
@@ -86,6 +86,10 @@
|
||||
<string name="confirm">확인</string>
|
||||
<string name="cancel">취소</string>
|
||||
|
||||
<!-- Creator community - pin/fixed menu -->
|
||||
<string name="screen_creator_community_pin">최상단에 고정</string>
|
||||
<string name="screen_creator_community_unpin">고정 해제</string>
|
||||
|
||||
<!-- Settings - Language -->
|
||||
<string name="screen_settings_language">언어 설정</string>
|
||||
<string name="settings_language_korean">한국어</string>
|
||||
|
||||
Reference in New Issue
Block a user