mirror of https://github.com/ThmmyNoLife/mTHMMY
oogee
6 years ago
6 changed files with 43 additions and 31 deletions
@ -1,4 +1,4 @@ |
|||
package gr.thmmy.mthmmy.activities.create_content; |
|||
package gr.thmmy.mthmmy.activities.create_topic; |
|||
|
|||
import android.os.AsyncTask; |
|||
|
@ -0,0 +1,32 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|||
android:orientation="vertical" |
|||
android:layout_width="match_parent" |
|||
android:layout_height="match_parent" |
|||
xmlns:app="http://schemas.android.com/apk/res-auto"> |
|||
|
|||
<com.google.android.material.textfield.TextInputLayout |
|||
android:id="@+id/subject_input" |
|||
android:layout_width="240dp" |
|||
android:layout_height="wrap_content" |
|||
android:layout_margin="16dp" |
|||
android:hint="@string/subject"> |
|||
|
|||
<com.google.android.material.textfield.TextInputEditText |
|||
android:layout_width="match_parent" |
|||
android:layout_height="wrap_content" |
|||
android:lines="1" |
|||
android:maxLines="1" |
|||
android:ellipsize="end" |
|||
android:inputType="text"/> |
|||
</com.google.android.material.textfield.TextInputLayout> |
|||
|
|||
<gr.thmmy.mthmmy.editorview.EditorView |
|||
android:id="@+id/main_content_editorview" |
|||
android:layout_width="match_parent" |
|||
android:layout_height="wrap_content" |
|||
android:layout_marginStart="16dp" |
|||
android:layout_marginEnd="16dp" |
|||
app:hint="topic message"/> |
|||
|
|||
</LinearLayout> |
Loading…
Reference in new issue