123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?xml version="1.0" encoding="utf-8"?>
- <lib.homhomlib.design.SlidingLayout 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="match_parent"
- app:background_view="@layout/view_bg_main"
- app:sliding_mode="top"
- app:top_max="80dp">
- <!--注: 这里的clickable给true是因为SlidingLayout这个第三方控件的bug-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#f4f4f4"
- android:clickable="true"
- android:orientation="vertical"
- android:paddingBottom="5dp"
- android:paddingLeft="12dp"
- android:paddingRight="12dp"
- android:paddingTop="12dp"
- android:focusable="true">
- <EditText
- android:id="@+id/et"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/shape_bg"
- android:gravity="top"
- android:hint="@string/please_input"
- android:lines="8"
- android:autofillHints=""
- android:padding="5dp"
- android:inputType="textMultiLine"
- android:textSize="20sp" />
- <android.support.v7.widget.CardView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="1dp"
- android:layout_marginRight="1dp"
- android:layout_marginTop="12dp">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/selector_currspker"
- android:gravity="center_vertical"
- android:onClick="onSpkerSwitchClick"
- android:orientation="horizontal"
- android:padding="7dp">
- <ImageView
- android:id="@+id/iv_curspk_icon"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:src="@mipmap/xiaoyan"
- android:contentDescription="TODO" />
- <TextView
- android:id="@+id/tv_curspk_desc"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:text="小燕 青年女声"
- android:textSize="18sp" />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/speed"
- android:textSize="15sp" />
- <SeekBar
- android:focusable="auto"
- android:progress="50"
- android:id="@+id/seekBar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:thumb="@drawable/shape_seekbar_thumb" />
- </LinearLayout>
- <Button
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:background="@drawable/selector_btn"
- android:onClick="onSpeakClick"
- android:text="@string/btn_speak"
- android:textColor="#fff"
- android:textSize="18sp" />
- <FrameLayout
- android:id="@+id/fl_remark"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:text="@string/xunfei"
- android:textSize="13sp" />
- </LinearLayout>
- </lib.homhomlib.design.SlidingLayout>
|