113 lines
3.1 KiB
Plaintext
113 lines
3.1 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="10dp"
|
||
|
android:background="@color/white"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/btnZhengli"
|
||
|
style="@style/buttonCates"
|
||
|
android:text="整理书架"
|
||
|
/>
|
||
|
<LinearLayout style="@style/llGraySplit.2dp"/>
|
||
|
<Button
|
||
|
android:id="@+id/btnImport"
|
||
|
style="@style/buttonCates"
|
||
|
android:text="本地导入"
|
||
|
/>
|
||
|
|
||
|
|
||
|
<!-- <Button
|
||
|
style="@style/buttonCates"
|
||
|
android:text="切换视图"
|
||
|
/>
|
||
|
-->
|
||
|
<LinearLayout style="@style/llGraySplit.2dp"/>
|
||
|
<!-- <Button
|
||
|
android:id="@+id/btnUploadProgress"
|
||
|
style="@style/buttonCates"
|
||
|
android:text="上传进度"
|
||
|
/>
|
||
|
<LinearLayout style="@style/llGraySplit.2dp"/>
|
||
|
<Button
|
||
|
android:id="@+id/btnDownloadProgress"
|
||
|
style="@style/buttonCates"
|
||
|
android:text="下载进度"
|
||
|
/>
|
||
|
<LinearLayout style="@style/llGraySplit.2dp"/>-->
|
||
|
<!--
|
||
|
<Button
|
||
|
style="@style/buttonCates"
|
||
|
android:text="WIFI传书"
|
||
|
/>
|
||
|
|
||
|
<LinearLayout style="@style/llGraySplit.2dp"/>
|
||
|
<Button
|
||
|
style="@style/buttonCates"
|
||
|
android:text="TXT下载"
|
||
|
|
||
|
/>
|
||
|
-->
|
||
|
<LinearLayout
|
||
|
style="@style/llSetup"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="@dimen/_10dp"
|
||
|
>
|
||
|
<TextView
|
||
|
style="@style/buttonCates"
|
||
|
android:layout_marginBottom="5dp"
|
||
|
android:text="@string/title_shelforder"
|
||
|
|
||
|
/>
|
||
|
<RadioGroup
|
||
|
android:id="@+id/rgShelfOrder"
|
||
|
android:layout_weight="1"
|
||
|
style="@style/radioGroup"
|
||
|
android:layout_width ="wrap_content"
|
||
|
android:orientation ="vertical"
|
||
|
android:layout_gravity="right"
|
||
|
android:gravity="center_horizontal"
|
||
|
>
|
||
|
<RadioButton
|
||
|
android:id="@+id/radioButton1"
|
||
|
android:text="按更新时间"
|
||
|
style="@style/radioButtonNormal"
|
||
|
|
||
|
android:checked="true"
|
||
|
/>
|
||
|
<RadioButton
|
||
|
android:id="@+id/radioButton2"
|
||
|
android:text="按最近阅读"
|
||
|
style="@style/radioButtonNormal"
|
||
|
|
||
|
/>
|
||
|
<RadioButton
|
||
|
android:id="@+id/radioButton3"
|
||
|
android:text="按有更新"
|
||
|
style="@style/radioButtonNormal"
|
||
|
|
||
|
/>
|
||
|
<RadioButton
|
||
|
android:id="@+id/radioButton4"
|
||
|
android:text="按有更新+最近阅读+更新时间"
|
||
|
style="@style/radioButtonNormal"
|
||
|
|
||
|
/>
|
||
|
</RadioGroup>
|
||
|
|
||
|
</LinearLayout>
|
||
|
<LinearLayout style="@style/llGraySplit.2dp"/>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/btnCancel"
|
||
|
style="@style/buttonCates"
|
||
|
android:text="取消"
|
||
|
android:textColor="@color/colorAccent"
|
||
|
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|