mirror of https://github.com/ThmmyNoLife/mTHMMY
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:orientation="vertical">
|
|
|
|
<me.zhanghai.android.materialprogressbar.MaterialProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="@style/Widget.MaterialProgressBar.ProgressBar.Horizontal.NoPadding"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/progress_bar_height"
|
|
android:indeterminate="true"
|
|
android:visibility="invisible"
|
|
app:mpb_indeterminateTint="@color/accent"
|
|
app:mpb_progressStyle="horizontal" />
|
|
|
|
<gr.thmmy.mthmmy.views.CustomRecyclerView
|
|
android:id="@+id/shoutbox_recyclerview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:paddingBottom="8dp"
|
|
tools:listitem="@layout/fragment_shoutbox_shout_row" />
|
|
|
|
<gr.thmmy.mthmmy.views.editorview.EditorView
|
|
android:id="@+id/edior_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:visibility="gone"/>
|
|
|
|
<gr.thmmy.mthmmy.views.editorview.EmojiKeyboard
|
|
android:id="@+id/emoji_keyboard"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="180dp"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|