You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.6 KiB
XML
75 lines
2.6 KiB
XML
|
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
tools:context=".MainActivity">
|
||
|
|
|
||
|
|
<include
|
||
|
|
layout="@layout/toolbar_yx"
|
||
|
|
android:visibility="gone" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="150dp"
|
||
|
|
android:layout_margin="5dp"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:background="@drawable/radius"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<CheckBox
|
||
|
|
android:id="@+id/cb_crop"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:text="是否裁剪图片"
|
||
|
|
android:textColor="#53575e"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
<CheckBox
|
||
|
|
android:id="@+id/cb_compress"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:checked="true"
|
||
|
|
android:text="是否压缩图片"
|
||
|
|
android:textColor="#53575e"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
<CheckBox
|
||
|
|
android:id="@+id/cb_editor"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:checked="true"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:text="是否开启图片编辑"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:textColor="#53575e"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recycle"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="8dp"
|
||
|
|
android:layout_marginRight="8dp"
|
||
|
|
android:overScrollMode="never" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<ProgressBar
|
||
|
|
android:id="@+id/progressBar"
|
||
|
|
style="?android:attr/progressBarStyleHorizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="2dp"
|
||
|
|
android:progressDrawable="@drawable/progress_bar_color"/>
|
||
|
|
<WebView
|
||
|
|
android:id="@+id/webView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent" >
|
||
|
|
</WebView>
|
||
|
|
|
||
|
|
</LinearLayout>
|