99 lines
3.5 KiB
XML
99 lines
3.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
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="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="175dp"
|
||
|
android:layout_margin="10dp"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="250dp"
|
||
|
android:layout_height="180dp"
|
||
|
android:layout_weight="1"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/author_img"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="1"
|
||
|
tools:srcCompat="@tools:sample/avatars" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_weight="1"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/book_authorname1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="50dp"
|
||
|
android:layout_marginTop="50dp"
|
||
|
android:gravity="center"
|
||
|
android:text="作者"
|
||
|
android:textSize="20dp"
|
||
|
android:textStyle="bold" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="30dp"
|
||
|
android:orientation="horizontal">
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:textSize="15dp"
|
||
|
android:textStyle="italic"
|
||
|
android:text="简介">
|
||
|
</TextView>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_alignParentTop="true">
|
||
|
|
||
|
<include layout="@layout/expandable" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="30dp"
|
||
|
android:orientation="horizontal">
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:textSize="15dp"
|
||
|
android:textStyle="italic"
|
||
|
android:text="作品">
|
||
|
</TextView>
|
||
|
</LinearLayout>
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/recyclerView1"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|