Welcome to mirror list, hosted at ThFree Co, Russian Federation.

item_prepare_create_stack.xml « layout « res « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 303c9328d129e5441887f45c9d9bfb133b56517d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/selectableItemBackground"
    android:orientation="horizontal"
    android:paddingStart="72dp"
    android:paddingTop="20dp"
    android:paddingEnd="@dimen/spacer_2x"
    android:paddingBottom="20dp">

    <TextView
        android:id="@+id/stackTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="middle"
        android:singleLine="true"
        android:textAppearance="?attr/textAppearanceListItem"
        tools:text="@tools:sample/full_names" />


    <androidx.appcompat.widget.AppCompatImageView
        android:id="@+id/selected_check"
        android:layout_width="22dp"
        android:layout_height="22dp"
        android:layout_marginStart="@dimen/spacer_1x"
        app:srcCompat="@drawable/selected_check"
        tools:src="@drawable/ic_check_grey600_24dp" />

</LinearLayout>