pandorapan/live/src/main/res/layout/dialog_live_pk.xml
2022-07-18 15:31:45 +08:00

57 lines
1.7 KiB
XML

<?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="match_parent"
android:background="@color/white"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="46dp">
<ImageView
android:id="@+id/btn_close"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:padding="5dp"
android:src="@mipmap/icon_live_close_2"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/live_online_anchor"
android:textColor="@color/textColor2"
android:textSize="14sp"
/>
<ImageView
android:id="@+id/btn_search"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="8dp"
android:padding="5dp"
android:src="@mipmap/icon_live_search"
/>
</RelativeLayout>
<View
style="@style/line2"
/>
<com.yunbao.common.custom.CommonRefreshView
android:id="@+id/refreshView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>