65 lines
2.4 KiB
XML
65 lines
2.4 KiB
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"
|
|
android:background="@color/white">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_category_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/appstore_activity_bgHeight"
|
|
android:layout_centerHorizontal="true"
|
|
android:background="@color/top_bannar_background">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_back"
|
|
android:layout_width="@dimen/PX50x"
|
|
android:layout_height="@dimen/PX50x"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="@dimen/comeback_left"
|
|
android:background="@drawable/icon_left"
|
|
android:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_subject_img"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:gravity="center"
|
|
android:text="最新上架"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/white"
|
|
android:textSize="@dimen/homePage_fragment_topSize" />
|
|
|
|
<TextView
|
|
android:id="@+id/subject_number_tv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginRight="@dimen/number_marginright"
|
|
android:gravity="center"
|
|
android:layout_centerInParent="true"
|
|
android:text="0款应用"
|
|
android:textColor="@color/white"
|
|
android:visibility="gone"
|
|
android:textSize="@dimen/SP22x" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/subject_refreshLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/rl_category_bg"
|
|
android:scrollbars="none">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/subject_recycleView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:scrollbars="none" />
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</RelativeLayout> |