125 lines
3.6 KiB
XML
125 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.constraint.ConstraintLayout 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"
|
|
style="@style/llOutside"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
tools:context=".Activity_createShudan"
|
|
tools:showIn="@layout/activity_create_shudan">
|
|
|
|
<android.support.v4.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:layout_marginRight="@dimen/marginRight"
|
|
android:layout_marginLeft="@dimen/marginLeft"
|
|
>
|
|
|
|
<EditText
|
|
android:id="@+id/txtTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="书单标题"
|
|
/>
|
|
|
|
<LinearLayout style="@style/llGraySplit" />
|
|
|
|
<EditText
|
|
android:id="@+id/txtDesc"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lines="5"
|
|
android:maxLength="255"
|
|
android:hint="书单描述"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btnAddFromShelf"
|
|
style="@style/buttonRound"
|
|
android:drawableLeft="@android:drawable/ic_menu_add"
|
|
android:text="从书架添加"
|
|
/>
|
|
<Button
|
|
android:id="@+id/btnAddFromSearch"
|
|
style="@style/buttonRound"
|
|
android:drawableLeft="@android:drawable/ic_menu_add"
|
|
android:text="从书库添加"
|
|
/>
|
|
<TextView style="@style/TextViewFill"/>
|
|
<RadioGroup
|
|
style="@style/radioGroup"
|
|
android:orientation="horizontal"
|
|
android:gravity="right"
|
|
android:layout_gravity="center"
|
|
>
|
|
|
|
<RadioButton
|
|
android:id="@+id/radioButtonBoy"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:checked="true"
|
|
android:gravity="center"
|
|
android:text="男频"
|
|
/>
|
|
|
|
<RadioButton
|
|
android:id="@+id/radioButtonGirl"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
|
|
|
|
android:gravity="center"
|
|
android:text="女频"
|
|
/>
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
</LinearLayout>
|
|
<TextView
|
|
style="@style/TextViewDesc"
|
|
android:text="@string/shudanalert"
|
|
android:maxLines="2"
|
|
/>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recycleViewBookList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|
|
|
|
|
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout> |