113 lines
3.9 KiB
XML
113 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<ScrollView 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"
|
||
tools:context=".Author_introductionActivity">
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:orientation="vertical">
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:orientation="horizontal">
|
||
|
||
<ImageView
|
||
android:id="@+id/author_back"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_marginStart="10dp"
|
||
android:padding="4dp"
|
||
android:src="@drawable/return1" />
|
||
|
||
<TextView
|
||
android:id="@+id/page_title"
|
||
android:layout_width="0dp"
|
||
android:layout_height="wrap_content"
|
||
android:layout_gravity="center"
|
||
android:layout_weight="1"
|
||
android:gravity="center"
|
||
android:text="作者简介"
|
||
android:textSize="18sp"
|
||
android:textStyle="bold" />
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="175dp"
|
||
android:layout_margin="10dp"
|
||
android:orientation="horizontal">
|
||
|
||
<ImageView
|
||
android:id="@+id/author_img"
|
||
android:layout_width="0dp"
|
||
android:layout_height="match_parent"
|
||
android:layout_weight="1"
|
||
tools:srcCompat="@tools:sample/avatars" />
|
||
|
||
<LinearLayout
|
||
android:layout_width="0dp"
|
||
android:layout_height="wrap_content"
|
||
android:layout_gravity="center"
|
||
android:layout_marginStart="30dp"
|
||
android:layout_weight="1"
|
||
android:orientation="vertical">
|
||
|
||
<TextView
|
||
android:id="@+id/book_authorname1"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:gravity="start"
|
||
android:text="作者"
|
||
android:textSize="20sp"
|
||
android:textStyle="bold" />
|
||
|
||
</LinearLayout>
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:orientation="vertical">
|
||
|
||
<TextView
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginStart="5dp"
|
||
android:text="简介"
|
||
android:textSize="15sp"
|
||
android:textStyle="italic" />
|
||
|
||
<TextView
|
||
android:id="@+id/author_intro"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginStart="5dp"
|
||
android:text="详情:1111111111111111"
|
||
android:textSize="15sp"
|
||
android:textStyle="italic" />
|
||
|
||
</LinearLayout>
|
||
|
||
<TextView
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginStart="5dp"
|
||
android:layout_marginTop="10dp"
|
||
android:text="作品"
|
||
android:textSize="15sp"
|
||
android:textStyle="italic" />
|
||
|
||
<androidx.recyclerview.widget.RecyclerView
|
||
android:id="@+id/authorwork_recyclerView"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content" />
|
||
|
||
</LinearLayout>
|
||
|
||
</ScrollView> |