2019-07-14 15:29:10 +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_post_video_activity"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/backgroundColor"
|
2019-08-07 17:28:02 +02:00
|
|
|
tools:application=".PostImageActivity">
|
2019-07-14 15:29:10 +02:00
|
|
|
|
2019-08-05 04:30:22 +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-05 04:30:22 +02:00
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
2020-02-22 11:37:49 +01:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_post_video_activity"
|
2019-08-05 04:30:22 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-02-22 11:37:49 +01:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator" />
|
2019-08-05 04:30:22 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-07-14 15:29:10 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-08-05 04:30:22 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2019-07-14 15:29:10 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
|
|
|
|
|
|
|
<pl.droidsonroids.gif.GifImageView
|
|
|
|
android:id="@+id/subreddit_icon_gif_image_view_post_video_activity"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subreddit_name_text_view_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toStartOf="@id/rules_button_post_video_activity"
|
|
|
|
android:layout_toEndOf="@id/subreddit_icon_gif_image_view_post_video_activity"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginStart="32dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:text="@string/choose_a_subreddit"
|
|
|
|
android:textSize="?attr/font_default" />
|
2019-07-14 15:29:10 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/rules_button_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:text="@string/rules"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="?attr/font_default" />
|
2019-07-14 15:29:10 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2019-07-17 03:31:49 +02:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/dividerColor" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.libRG.CustomTextView
|
|
|
|
android:id="@+id/flair_custom_text_view_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/flair"
|
|
|
|
android:textColor="@color/primaryTextColor"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_default"
|
2019-07-17 03:31:49 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
app:lib_setRadius="3dp"
|
2020-02-26 15:40:15 +01:00
|
|
|
app:lib_setRoundedBorderColor="?attr/flairColor"
|
2019-07-17 03:31:49 +02:00
|
|
|
app:lib_setRoundedView="true"
|
|
|
|
app:lib_setShape="rectangle" />
|
|
|
|
|
|
|
|
<com.libRG.CustomTextView
|
|
|
|
android:id="@+id/spoiler_custom_text_view_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/spoiler"
|
|
|
|
android:textColor="@color/primaryTextColor"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_default"
|
2019-07-17 03:31:49 +02:00
|
|
|
app:lib_setRadius="3dp"
|
2020-02-26 15:40:15 +01:00
|
|
|
app:lib_setRoundedBorderColor="?attr/spoilerColor"
|
2019-07-17 03:31:49 +02:00
|
|
|
app:lib_setRoundedView="true"
|
|
|
|
app:lib_setShape="rectangle" />
|
|
|
|
|
|
|
|
<com.libRG.CustomTextView
|
|
|
|
android:id="@+id/nsfw_custom_text_view_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/nsfw"
|
|
|
|
android:textColor="@color/primaryTextColor"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_default"
|
2019-07-17 03:31:49 +02:00
|
|
|
app:lib_setRadius="3dp"
|
|
|
|
app:lib_setRoundedBorderColor="@color/colorAccent"
|
|
|
|
app:lib_setRoundedView="true"
|
|
|
|
app:lib_setShape="rectangle" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-07-14 15:29:10 +02:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/dividerColor" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/post_title_edit_text_post_video_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:hint="@string/post_title_hint"
|
|
|
|
android:inputType="textCapSentences|textMultiLine"
|
2019-09-26 18:30:24 +02:00
|
|
|
android:textSize="?attr/title_font_18"
|
2019-07-14 15:29:10 +02:00
|
|
|
android:background="#00000000"
|
|
|
|
android:textColor="@color/primaryTextColor" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/dividerColor" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/select_video_constraint_layout_post_video_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="32dp">
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/capture_fab_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_outline_add_a_photo_24px"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/select_from_library_fab_post_video_activity"
|
2019-08-26 09:55:18 +02:00
|
|
|
app:layout_constraintHorizontal_chainStyle="spread"
|
2020-02-26 15:40:15 +01:00
|
|
|
app:backgroundTint="?attr/colorPrimaryLightTheme"
|
2019-08-26 09:55:18 +02:00
|
|
|
app:tint="@android:color/white" />
|
2019-07-14 15:29:10 +02:00
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/select_from_library_fab_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_outline_select_photo_24px"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/capture_fab_post_video_activity"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-08-26 09:55:18 +02:00
|
|
|
app:layout_constraintHorizontal_chainStyle="spread"
|
2020-02-26 15:40:15 +01:00
|
|
|
app:backgroundTint="?attr/colorPrimaryLightTheme"
|
2019-08-26 09:55:18 +02:00
|
|
|
app:tint="@android:color/white" />
|
2019-07-14 15:29:10 +02:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/select_again_text_view_post_video_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:text="@string/select_again"
|
|
|
|
android:textColor="@color/colorAccent"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_default"
|
2019-07-14 15:29:10 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
2019-08-28 10:41:36 +02:00
|
|
|
<com.google.android.exoplayer2.ui.PlayerView
|
|
|
|
android:id="@+id/player_view_post_video_activity"
|
2019-07-14 15:29:10 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-08-28 10:41:36 +02:00
|
|
|
android:layout_height="400dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:controller_layout_id="@layout/exo_playback_control_view" />
|
2019-07-14 15:29:10 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|