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

item_tip.xml « layout « res « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2177d013c7647fe21337347c6ab0793963d8bd5c (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
33
34
<?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:orientation="vertical"
    android:paddingTop="@dimen/spacer_1x"
    android:paddingBottom="@dimen/spacer_1x">

    <TextView
        android:id="@+id/tip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawablePadding="@dimen/spacer_2x"
        android:gravity="start|center"
        android:textAppearance="?attr/textAppearanceListItem"
        app:drawableLeftCompat="@drawable/ic_lightbulb_outline_grey600_24dp"
        app:drawableStartCompat="@drawable/ic_lightbulb_outline_grey600_24dp"
        tools:maxLength="200"
        tools:text="@tools:sample/lorem/random" />

    <com.google.android.material.button.MaterialButton
        android:id="@+id/action_button"
        style="@style/Widget.MaterialComponents.Button.OutlinedButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="40dp"
        android:layout_marginEnd="@dimen/spacer_1x"
        android:textColor="@color/defaultBrand"
        android:visibility="visible"
        tools:text="@string/error_action_open_deck_info"
        tools:visibility="visible" />
</LinearLayout>