added comment to ui

This commit is contained in:
IvanaE 2018-11-28 13:11:37 -05:00
parent 5faed3fd4a
commit a5a25902d1
2 changed files with 17 additions and 5 deletions

View file

@ -25,7 +25,7 @@
</value> </value>
</option> </option>
</component> </component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

View file

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@ -68,10 +69,21 @@
android:buttonTint="@color/colorBlack"/> android:buttonTint="@color/colorBlack"/>
</RadioGroup> </RadioGroup>
</LinearLayout>
//component used from https://github.com/rengwuxian/MaterialEditText
<com.rengwuxian.materialedittext.MaterialEditText
android:id="@+id/Comment"
android:layout_width="match_parent"
android:layout_height="80dp"
android:background="@color/colorWhite"
android:textSize="15sp"
android:hint="Comment"
android:textCursorDrawable="@color/colorWhite"/>
</LinearLayout>
</LinearLayout> </LinearLayout>