mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-14 02:01:56 +00:00
Task form text color fix
This commit is contained in:
parent
eae77cfad5
commit
ae992accfe
2 changed files with 7 additions and 2 deletions
|
|
@ -54,7 +54,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/task_title"
|
||||
android:textColor="?attr/toolbarContentColor"
|
||||
android:textColor="?attr/colorPrimaryText"
|
||||
android:inputType="textCapSentences|textAutoCorrect"/>
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
android:hint="@string/notes"
|
||||
android:minLines="3"
|
||||
android:gravity="top"
|
||||
android:textColor="?attr/toolbarContentColor"
|
||||
android:textColor="?attr/colorPrimaryText"
|
||||
android:inputType="textCapSentences|textAutoCorrect|textMultiLine"/>
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
<TextView
|
||||
|
|
|
|||
|
|
@ -232,6 +232,11 @@ class TaskFormActivity : BaseActivity() {
|
|||
configureForm()
|
||||
}
|
||||
|
||||
override fun onStart() {
|
||||
super.onStart()
|
||||
textEditText.requestFocus()
|
||||
}
|
||||
|
||||
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
||||
if (isCreating) {
|
||||
menuInflater.inflate(R.menu.menu_task_create, menu)
|
||||
|
|
|
|||
Loading…
Reference in a new issue