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

89 lines
3.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/color_FAFAFC"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_angle_list"
android:background="@color/color_FFFFFF"
android:paddingTop="@dimen/angle_set_title_mt"
android:layout_width="@dimen/angle_list_width"
android:layout_height="match_parent"/>
<RelativeLayout
android:id="@+id/rl_angle_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/btn_back_margin_top">
<ImageView
android:id="@+id/im_back"
android:layout_width="@dimen/round_button_width"
android:layout_height="@dimen/round_button_width"
android:layout_marginLeft="10dp"
android:layout_centerVertical="true"/>
<ImageView
android:id="@+id/angle_ok"
android:layout_width="@dimen/round_button_width"
android:layout_height="@dimen/round_button_width"
android:layout_marginRight="10dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"/>
<ImageView
android:id="@+id/angle_delete"
android:layout_width="@dimen/round_button_width"
android:layout_height="@dimen/round_button_width"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/angle_ok"
android:layout_centerVertical="true"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/rv_angle_list"
android:layout_below="@+id/rl_angle_title">
<com.ubt.jimu.controller.component.AngleSetView
android:id="@+id/angle_set_view"
android:layout_width="@dimen/angle_set_width"
android:layout_height="@dimen/angle_set_width"
android:layout_marginTop="@dimen/angle_set_top"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/layout_default_page"
android:background="@color/bg_FAFAFA"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/rv_angle_list">
<ImageView
android:id="@+id/im_select_engine"
android:layout_width="@dimen/select_engine_width"
android:layout_height="@dimen/select_engine_width"
android:layout_centerInParent="true"/>
<TextView
android:textSize="@dimen/txt_size_18"
android:textColor="@color/txt_798487"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/select_engine_top"
android:text="@string/select_engine_txt"
android:layout_below="@+id/im_select_engine"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/rv_angle_list">
<TextView
android:textSize="@dimen/theme_18sp"
android:textColor="@color/theme_txt"
android:gravity="center"
android:id="@+id/tv_setting_title"
android:layout_width="wrap_content"
android:layout_height="@dimen/round_button_width"
android:layout_marginTop="@dimen/btn_back_margin_top"
android:text="@string/h_slider"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
</RelativeLayout>