diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-06-13 04:16:04 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-06-13 04:16:04 +0000 |
commit | 42c7b316f37b17178518cbf9649a788fcdf0895c (patch) | |
tree | 907e829a37a3534691f968179a7d8d43af91329d /app/src/main/res/layout/activity_comment.xml | |
parent | ef8daed5714cd02f57774c86aab6bd0ca454fcb7 (diff) | |
download | infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.tar infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.tar.gz infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.tar.bz2 infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.tar.lz infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.tar.xz infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.tar.zst infinity-for-reddit-42c7b316f37b17178518cbf9649a788fcdf0895c.zip |
Add CommentActivity for sending comments (not implemented yet). Minor UI tweaks.
Diffstat (limited to 'app/src/main/res/layout/activity_comment.xml')
-rw-r--r-- | app/src/main/res/layout/activity_comment.xml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_comment.xml b/app/src/main/res/layout/activity_comment.xml new file mode 100644 index 00000000..3beff433 --- /dev/null +++ b/app/src/main/res/layout/activity_comment.xml @@ -0,0 +1,56 @@ +<?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>
\ No newline at end of file |