Files
OxygenToolbox/app/src/main/res/layout/fold_layout_head.xml
2022-03-21 22:10:10 +08:00

37 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/foldLayoutLinearLayout"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/top_bottom_radius_background"
android:gravity="center_vertical" >
<TextView
android:id="@+id/foldLayoutIcon"
android:layout_width="0dp"
android:layout_height="20dp"
android:layout_weight="1"
android:textAlignment="center"
android:textSize="20sp"
android:textColor="@color/app_theme" />
<TextView
android:id="@+id/foldLayoutTextView"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="6"
android:gravity="center_vertical"
android:textColor="@color/black"
android:textSize="18sp" />
<ImageView
android:id="@+id/arrowIcon"
android:layout_width="0dp"
android:layout_height="15dp"
android:layout_weight="1"
app:srcCompat="@drawable/right_to_down_arrow" />
</LinearLayout>