aboutsummaryrefslogblamecommitdiff
path: root/app/src/main/res/layout/activity_comment.xml
blob: 7ea850f6e823ab81b0a498d2e29de5bfded059ba (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                                                                               
                                                         
                                              
                                         



                                                    
                                                               










                                                            
                                          

                                            

                                                                     
                     
                                               
                                                


                                          
                     



                                                                              
                                                           







                                                                    
                                                        





                                                              

                                                     
<?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_comment_activity"
    android:background="?attr/backgroundColor"
    tools:application=".CommentActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/toolbarAndTabBackgroundColor"
        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>

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:padding="16dp">

            <TextView
                android:id="@+id/comment_parent_markwon_view_comment_activity"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="16dp"
                android:textSize="?attr/content_font_16" />

            <EditText
                android:id="@+id/comment_edit_text_comment_activity"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="top"
                android:hint="@string/write_comment_hint"
                android:inputType="textCapSentences|textMultiLine"
                android:textSize="?attr/content_font_18"
                android:background="#00000000"
                android:textColor="@color/primaryTextColor" />

        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>