GleeStream/app/src/main/res/layout/layout_store.xml
2025-04-30 16:52:11 +08:00

75 lines
3.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="wrap_content">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_store_coinsepisode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/followHistoryOllow"
android:text="@string/coins_txt"
android:textColor="@color/color_e6ffffff"
android:textSize="@dimen/appnameOmmonClose" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_store_coinsvalue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_marginEnd="@dimen/followHistoryOllow"
android:textColor="@color/color_e6ffffff"
android:textSize="@dimen/appnameOmmonClose" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview_store"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_store_coinsvalue"
android:layout_marginStart="@dimen/followHistoryOllow"
android:layout_marginTop="@dimen/earchLayout"
android:layout_marginEnd="@dimen/earchLayout" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_store_membership"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/recyclerview_store"
android:layout_marginStart="@dimen/followHistoryOllow"
android:layout_marginTop="@dimen/settingsHeaderGoogle"
android:layout_marginEnd="@dimen/followHistoryOllow"
android:text="@string/store_membership"
android:textColor="@color/color_e6ffffff"
android:textSize="@dimen/appnameOmmonClose" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview_store_vip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_store_membership"
android:layout_marginStart="@dimen/followHistoryOllow"
android:layout_marginTop="@dimen/rechargeGradient"
android:layout_marginEnd="@dimen/followHistoryOllow" />
<include
layout="@layout/layout_purchase_introduce_gs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/recyclerview_store_vip"
android:layout_marginStart="@dimen/followHistoryOllow"
android:layout_marginEnd="@dimen/followHistoryOllow" />
</RelativeLayout>
</androidx.core.widget.NestedScrollView>
</RelativeLayout>