You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CustoMIUIzer/app/src/main/res/layout/preference_seekbar.xml

79 lines
2.5 KiB
XML

xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="center_vertical"
android:baselineAligned="false"
android:clipChildren="false"
android:clipToPadding="false">
style="@style/Widget.PreferenceItem"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="center_vertical"
android:clipChildren="false"
android:clipToPadding="false">
android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:fadingEdge="horizontal"
android:maxLines="2"
style="@style/TextAppearance.Primary" />
android:id="@android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
android:layout_alignStart="@android:id/title"
android:maxLines="10"
style="@style/TextAppearance.Secondary" />
android:id="@+id/seekbar_group"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="6dip"
android:layout_marginTop="10dip"
android:layout_below="@android:id/summary"
android:clipChildren="false"
android:clipToPadding="false">
android:id="@+id/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/seekbar_margin_right"
android:layout_alignParentLeft="true" />
android:id="@+id/seekbar_value"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:maxLines="1"
tools:text="Value"
style="@style/TextAppearance.Secondary" />
android:id="@android:id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/seekbar_group"
android:layout_marginTop="10dip"
android:layout_alignStart="@id/seekbar_group"
style="@style/TextAppearance.Secondary" />