You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/qmui_config_color_white"
|
|
android:orientation="vertical"
|
|
tools:ignore="UseCompoundDrawables">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:padding="14dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_main_function"
|
|
android:layout_width="55dp"
|
|
android:layout_height="55dp"
|
|
android:contentDescription="@string/main_title" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_main_function"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="center"
|
|
android:text="@string/title" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_infos"
|
|
android:layout_width="20dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:background="@drawable/shape_corner_red"
|
|
android:gravity="center"
|
|
android:text=""
|
|
android:textColor="@color/qmui_config_color_white"
|
|
android:textSize="13sp"
|
|
android:visibility="gone"
|
|
tools:ignore="RtlHardcoded" />
|
|
|
|
</RelativeLayout>
|