| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <ScrollView 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:id="@+id/note_fragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context="com.sduduzog.slimlauncher.ui.main.NoteFragment">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:id="@+id/note_fragment_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/note_fragment_title"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="16dp"
- android:padding="12dp"
- android:text="@string/edit_note_fragment_untitled"
- android:textAppearance="@style/Base.TextAppearance.AppCompat"
- android:textSize="18sp"
- app:layout_constraintEnd_toStartOf="@+id/note_fragment_edit"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <TextView
- android:id="@+id/note_fragment_edit"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="16dp"
- android:layout_marginEnd="16dp"
- android:layout_marginRight="16dp"
- android:padding="12dp"
- android:text="@string/note_fragment_edit"
- android:textSize="18sp"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <TextView
- android:id="@+id/note_fragment_body"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:padding="12dp"
- android:textSize="14sp"
- android:textAppearance="@style/Base.TextAppearance.AppCompat"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/note_fragment_title" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </ScrollView>
|