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

activity_single_note.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: eb783f8dfde01dbb72cdd38fffe348b6f589a89b (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
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/single_note_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="16dp"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="@color/fg_default"
            android:textIsSelectable="true" />
    </ScrollView>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab_edit"
        style="@style/fab"
        android:src="@drawable/ic_action_edit"
        app:backgroundTint="@color/primary"
        app:rippleColor="@color/primary_dark" />
</merge>