2024-04-25 10:33:59 +08:00
|
|
|
<?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:layout_width="match_parent"
|
|
|
|
android:layout_height="45dp">
|
|
|
|
|
2024-04-27 14:00:50 +08:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bookinfo_return"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:src="@drawable/return1" />
|
2024-04-25 10:33:59 +08:00
|
|
|
|
|
|
|
<TextView
|
2024-05-02 10:25:50 +08:00
|
|
|
android:id="@+id/bookinfo_mess"
|
2024-04-25 10:33:59 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-05-02 10:25:50 +08:00
|
|
|
android:layout_marginLeft="220dp"
|
2024-04-25 10:33:59 +08:00
|
|
|
android:gravity="center"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:textSize="15dp"
|
|
|
|
android:text="添加图书" />
|
|
|
|
|
|
|
|
<ImageView
|
2024-04-27 14:00:50 +08:00
|
|
|
android:id="@+id/bookinfo_addBook"
|
2024-04-25 10:33:59 +08:00
|
|
|
android:layout_width="34dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center"
|
2024-04-30 09:41:24 +08:00
|
|
|
app:srcCompat="@drawable/addbook" />
|
2024-04-25 10:33:59 +08:00
|
|
|
|
|
|
|
<ImageView
|
2024-04-30 09:41:24 +08:00
|
|
|
android:id="@+id/toBookshelf"
|
|
|
|
android:layout_width="34dp"
|
|
|
|
android:layout_height="30dp"
|
2024-04-25 10:33:59 +08:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_margin="5dp"
|
2024-04-30 09:41:24 +08:00
|
|
|
app:srcCompat="@drawable/bookshelf1" />
|
2024-04-25 10:33:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|