2019-06-13 06:16:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-06-14 04:30:26 +02:00
|
|
|
android:id="@+id/coordinator_layout_comment_activity"
|
2019-06-13 06:16:04 +02:00
|
|
|
tools:context=".CommentActivity">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_comment_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2019-06-14 04:30:26 +02:00
|
|
|
android:padding="16dp"
|
2019-06-13 06:16:04 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
2019-06-14 12:14:49 +02:00
|
|
|
<ru.noties.markwon.view.MarkwonView
|
|
|
|
android:id="@+id/comment_parent_markwon_view_comment_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="16dp"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:textSize="16sp" />
|
|
|
|
|
2019-06-14 04:30:26 +02:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/comment_edit_text_comment_activity"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-06-28 05:29:05 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="top"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:hint="@string/write_comment_hint"
|
2019-06-14 04:30:26 +02:00
|
|
|
android:inputType="textCapSentences|textMultiLine"
|
2019-06-13 06:16:04 +02:00
|
|
|
android:textSize="18sp"
|
2019-06-28 05:29:05 +02:00
|
|
|
android:background="#00000000"
|
|
|
|
android:textColor="@color/primaryTextColor" />
|
2019-06-13 06:16:04 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|