mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-08 11:47:25 +01:00
56 lines
2.2 KiB
XML
56 lines
2.2 KiB
XML
|
<?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"
|
||
|
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"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/comment_parent_text_view_comment_activity"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="16dp"
|
||
|
android:textSize="16sp" />
|
||
|
|
||
|
<com.chinalwb.are.AREditText
|
||
|
android:id="@+id/arEditText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_margin="8dp"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="top"
|
||
|
android:hint="@string/write_comment_hint"
|
||
|
android:inputType="textMultiLine|textCapSentences"
|
||
|
android:textSize="18sp"
|
||
|
android:textColor="@color/primaryTextColor"/>
|
||
|
|
||
|
<com.chinalwb.are.styles.toolbar.ARE_ToolbarDefault
|
||
|
android:id="@+id/areToolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|