26 lines
871 B
XML
26 lines
871 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<View
|
|
android:id="@+id/title_line"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0.5dp" />
|
|
|
|
<com.yunbao.common.views.weight.VerticalViewPager
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never" />
|
|
|
|
<ImageView
|
|
android:id="@+id/voice_press"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginStart="54dp"
|
|
android:src="@mipmap/icon_voice_press"
|
|
android:visibility="gone" />
|
|
|
|
</RelativeLayout> |