- note_view_full modified
This commit is contained in:
parent
9ffd24c101
commit
ce683b3191
2 changed files with 82 additions and 57 deletions
BIN
app/src/main/res/drawable/new_note.png
Normal file
BIN
app/src/main/res/drawable/new_note.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 187 B |
|
@ -2,15 +2,37 @@
|
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
android:orientation="vertical"
|
||||
android:padding="15dp">
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/imageView10"
|
||||
android:src="@drawable/new_note"
|
||||
android:layout_gravity="center_vertical" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:text="New Note"
|
||||
android:id="@+id/textView" />
|
||||
android:id="@+id/textView"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:layout_gravity="center_vertical" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/nvf_note_title"
|
||||
|
@ -21,13 +43,15 @@
|
|||
android:elegantTextHeight="false"
|
||||
android:maxLines="1"
|
||||
android:textColor="#c5c4c4"
|
||||
android:hint="Title" />
|
||||
android:hint="Title"
|
||||
android:layout_marginTop="15dp" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:id="@+id/scrollView"
|
||||
android:layout_weight="0.5">
|
||||
android:layout_weight="0.5"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<EditText
|
||||
android:layout_width="fill_parent"
|
||||
|
@ -75,6 +99,7 @@
|
|||
android:drawableLeft="@android:drawable/ic_menu_delete" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in a new issue