50 lines
No EOL
1.9 KiB
XML
50 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/bg_color"
|
|
android:descendantFocusability="blocksDescendants"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="72dp"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingStart="@dimen/content_padding">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
tools:text="Germany"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:src="@drawable/ic_action_opacity"/>
|
|
|
|
<com.google.android.material.slider.Slider
|
|
android:id="@+id/slider"
|
|
style="@style/Widget.Styled.Slider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:valueFrom="0"
|
|
android:valueTo="255"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:layout_marginStart="@dimen/content_padding_half"
|
|
android:layout_marginEnd="@dimen/content_padding" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |