pandorapan/live/src/main/res/layout/activity_live_detail.xml

26 lines
871 B
XML
Raw Normal View History

2022-08-20 15:33:41 +08:00
<?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">
2022-11-09 09:47:04 +08:00
<View
android:id="@+id/title_line"
android:layout_width="match_parent"
android:layout_height="0.5dp" />
2022-08-20 15:33:41 +08:00
<com.yunbao.common.views.weight.VerticalViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never" />
2022-10-24 18:18:39 +08:00
<ImageView
android:id="@+id/voice_press"
2022-10-25 14:05:33 +08:00
android:layout_width="64dp"
android:layout_height="64dp"
2022-10-24 18:18:39 +08:00
android:layout_alignParentBottom="true"
2022-11-09 09:47:04 +08:00
android:layout_marginStart="54dp"
android:src="@mipmap/icon_voice_press"
android:visibility="gone" />
2022-08-20 15:33:41 +08:00
</RelativeLayout>