55 lines
2.4 KiB
XML
55 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<RelativeLayout
|
|
android:id="@+id/xl_change"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp25w">
|
|
<ImageView
|
|
android:id="@+id/img_header_official"
|
|
android:background="@drawable/community_img_offical"
|
|
android:layout_width="@dimen/dp70"
|
|
android:layout_height="@dimen/dp70"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp30"
|
|
android:textColor="@color/bg_596F80"
|
|
android:id="@+id/tv_official_intro"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp30w"
|
|
android:text="@string/favourite_official_big_title"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@+id/img_header_official"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp28"
|
|
android:textColor="@color/txt_92A7B6"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tv_exchange"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/dp26w"
|
|
android:text="@string/favourite_official_intro"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
<ImageView
|
|
android:background="@drawable/community_icon_change"
|
|
android:layout_width="@dimen/dp50"
|
|
android:layout_height="@dimen/dp50"
|
|
android:layout_marginRight="@dimen/dp20w"
|
|
android:layout_toLeftOf="@+id/tv_exchange"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_official"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp28w"
|
|
android:layout_marginTop="@dimen/dp10"
|
|
android:layout_marginRight="@dimen/dp28w"
|
|
android:layout_below="@+id/tv_official_intro"
|
|
style="@style/scrollbar_recyclerView_horizontal"/>
|
|
</LinearLayout>
|