37 lines
1.6 KiB
XML
37 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="@dimen/user_center_right_padding_left_right"
|
|
android:paddingRight="@dimen/user_center_right_padding_left_right"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/user_center_post_and_diy_item_ui_height">
|
|
<TextView
|
|
android:textSize="@dimen/content15"
|
|
android:textColor="@color/txt_596F80"
|
|
android:gravity="center"
|
|
android:id="@+id/contentTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="20dp"
|
|
android:text="@string/empty_post_list"/>
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/postActionParent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="20dp"
|
|
app:cardCornerRadius="30dp">
|
|
<TextView
|
|
android:textSize="@dimen/content15"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/txt_white"
|
|
android:gravity="center"
|
|
android:id="@+id/actionTextView"
|
|
android:background="@drawable/sel_common_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="@dimen/user_center_post_width"
|
|
android:text="@string/community_post"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</LinearLayout>
|