56 lines
1.9 KiB
XML
56 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context=".fragment.NewsFragment">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_45"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:text="@string/news"
|
|
android:textColor="@color/color_black"
|
|
android:textSize="@dimen/sp_25"
|
|
android:textStyle="normal" />
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_room2"
|
|
android:layout_width="@dimen/dp_24"
|
|
android:layout_height="@dimen/dp_24"
|
|
android:src="@mipmap/notifi"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerInParent="true"
|
|
android:layout_marginRight="@dimen/dp_11"/>
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<com.qxcm.moduleutil.widget.ScrollViewPager
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_60"
|
|
android:background="@color/color_transparent" />
|
|
|
|
</LinearLayout>
|
|
</layout> |