27 lines
965 B
XML
27 lines
965 B
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="@mipmap/bg_black"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="30dp"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:layout_marginRight="30dp"
|
||
|
android:layout_marginBottom="20dp"
|
||
|
android:text="活動"
|
||
|
android:textColor="#fff6f7fb"
|
||
|
android:textSize="12sp" />
|
||
|
|
||
|
<com.yunbao.common.custom.CommonRefreshView
|
||
|
android:id="@+id/refreshView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginLeft="30dp"
|
||
|
android:layout_marginRight="30dp"
|
||
|
android:layout_marginBottom="65dp" />
|
||
|
|
||
|
</LinearLayout>
|