38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/bg_F9F9F9"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:id="@+id/llActionbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/action_bar_height">
|
|
<ImageView
|
|
android:id="@+id/imbBack"
|
|
android:background="@mipmap/combined_shape_pad"
|
|
android:layout_width="@dimen/action_bar_height"
|
|
android:layout_height="@dimen/action_bar_height"/>
|
|
<TextView
|
|
android:textSize="@dimen/title15"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/txt_596F80"
|
|
android:gravity="center"
|
|
android:id="@+id/tvTitle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/pub_own"
|
|
android:layout_weight="1"/>
|
|
<ImageView
|
|
android:id="@+id/img_draft"
|
|
android:background="@mipmap/community_publish_draft"
|
|
android:layout_width="@dimen/action_bar_height"
|
|
android:layout_height="@dimen/action_bar_height"/>
|
|
</LinearLayout>
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/vp_answer_issue_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|