2019-08-13 08:25:16 +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"
|
|
|
|
android:id="@+id/coordinator_layout_edit_comment_activity"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/backgroundColor"
|
2019-09-29 15:18:45 +02:00
|
|
|
tools:context=".Activity.EditCommentActivity">
|
2019-08-13 08:25:16 +02:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/toolbarAndTabBackgroundColor"
|
2019-08-13 08:25:16 +02:00
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_edit_comment_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/post_text_content_edit_text_edit_comment_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="top"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:hint="@string/post_text_content_hint"
|
|
|
|
android:inputType="textCapSentences|textMultiLine"
|
2019-09-26 18:30:24 +02:00
|
|
|
android:textSize="?attr/content_font_18"
|
2019-08-13 08:25:16 +02:00
|
|
|
android:background="#00000000"
|
2020-02-27 09:58:15 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-08-13 08:25:16 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|