jimu-decompiled/resources/res/layout/activity_pack_select.xml
2025-05-13 19:24:51 +02:00

66 lines
3.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/bg_FAFAFC"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/nbv_bar">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_pack_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
</RelativeLayout>
<com.ubt.jimu.widgets.LoadStateView
android:id="@+id/load_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.ubt.jimu.widgets.NavigationBarView
android:id="@+id/nbv_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:nbv_style="round"
app:nbv_title="@string/select_Jimu_kit"/>
<RelativeLayout
android:id="@+id/scan_tips"
android:background="@drawable/scan_bg_tip"
android:visibility="gone"
android:layout_width="@dimen/scan_tips_width"
android:layout_height="@dimen/scan_tips_height"
android:layout_marginTop="15dp"
android:layout_marginRight="@dimen/theme_navigation_large_size"
android:layout_alignParentRight="true">
<TextView
android:textSize="@dimen/theme_16sp"
android:textColor="@color/bg_white"
android:ellipsize="end"
android:layout_gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/scan_tips_margin"
android:text="@string/scan_tips"
android:maxLines="3"
android:layout_toLeftOf="@+id/scan_tips_divide"
android:layout_centerVertical="true"/>
<View
android:id="@+id/scan_tips_divide"
android:background="@color/bg_divide"
android:layout_width="@dimen/scan_divide_width"
android:layout_height="@dimen/scan_divide_height"
android:layout_marginLeft="@dimen/scan_divide_margin"
android:layout_marginRight="@dimen/scan_divide_margin"
android:layout_toLeftOf="@+id/iv_tips_close"
android:layout_centerVertical="true"/>
<ImageView
android:id="@+id/iv_tips_close"
android:background="@drawable/scan_ic_select"
android:layout_width="@dimen/scan_tips_close_width"
android:layout_height="@dimen/scan_tips_close_width"
android:layout_marginRight="@dimen/scan_tips_margin"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
</RelativeLayout>