mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-10 20:57:25 +01:00
Choose whether receiving post reply notifications or not in PostVideoActivity.
This commit is contained in:
parent
9d87277ad8
commit
a904282c33
@ -14,6 +14,7 @@ import android.view.MenuItem;
|
|||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
@ -38,6 +39,7 @@ import com.google.android.material.appbar.AppBarLayout;
|
|||||||
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
|
||||||
import com.google.android.material.floatingactionbutton.FloatingActionButton;
|
import com.google.android.material.floatingactionbutton.FloatingActionButton;
|
||||||
import com.google.android.material.snackbar.Snackbar;
|
import com.google.android.material.snackbar.Snackbar;
|
||||||
|
import com.google.android.material.switchmaterial.SwitchMaterial;
|
||||||
import com.libRG.CustomTextView;
|
import com.libRG.CustomTextView;
|
||||||
|
|
||||||
import org.greenrobot.eventbus.EventBus;
|
import org.greenrobot.eventbus.EventBus;
|
||||||
@ -106,10 +108,18 @@ public class PostVideoActivity extends BaseActivity implements FlairBottomSheetF
|
|||||||
CustomTextView nsfwTextView;
|
CustomTextView nsfwTextView;
|
||||||
@BindView(R.id.divider_2_post_video_activity)
|
@BindView(R.id.divider_2_post_video_activity)
|
||||||
View divider2;
|
View divider2;
|
||||||
@BindView(R.id.post_title_edit_text_post_video_activity)
|
@BindView(R.id.receive_post_reply_notifications_linear_layout_post_video_activity)
|
||||||
EditText titleEditText;
|
LinearLayout receivePostReplyNotificationsLinearLayout;
|
||||||
|
@BindView(R.id.receive_post_reply_notifications_text_view_post_video_activity)
|
||||||
|
TextView receivePostReplyNotificationsTextView;
|
||||||
|
@BindView(R.id.receive_post_reply_notifications_switch_material_post_video_activity)
|
||||||
|
SwitchMaterial receivePostReplyNotificationsSwitchMaterial;
|
||||||
@BindView(R.id.divider_3_post_video_activity)
|
@BindView(R.id.divider_3_post_video_activity)
|
||||||
View divider3;
|
View divider3;
|
||||||
|
@BindView(R.id.post_title_edit_text_post_video_activity)
|
||||||
|
EditText titleEditText;
|
||||||
|
@BindView(R.id.divider_4_post_video_activity)
|
||||||
|
View divider4;
|
||||||
@BindView(R.id.select_video_constraint_layout_post_video_activity)
|
@BindView(R.id.select_video_constraint_layout_post_video_activity)
|
||||||
ConstraintLayout constraintLayout;
|
ConstraintLayout constraintLayout;
|
||||||
@BindView(R.id.capture_fab_post_video_activity)
|
@BindView(R.id.capture_fab_post_video_activity)
|
||||||
@ -345,6 +355,10 @@ public class PostVideoActivity extends BaseActivity implements FlairBottomSheetF
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
receivePostReplyNotificationsLinearLayout.setOnClickListener(view -> {
|
||||||
|
receivePostReplyNotificationsSwitchMaterial.performClick();
|
||||||
|
});
|
||||||
|
|
||||||
captureFab.setOnClickListener(view -> {
|
captureFab.setOnClickListener(view -> {
|
||||||
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
|
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
|
||||||
if (takeVideoIntent.resolveActivity(getPackageManager()) != null) {
|
if (takeVideoIntent.resolveActivity(getPackageManager()) != null) {
|
||||||
@ -387,11 +401,13 @@ public class PostVideoActivity extends BaseActivity implements FlairBottomSheetF
|
|||||||
subredditNameTextView.setTextColor(secondaryTextColor);
|
subredditNameTextView.setTextColor(secondaryTextColor);
|
||||||
rulesButton.setTextColor(mCustomThemeWrapper.getButtonTextColor());
|
rulesButton.setTextColor(mCustomThemeWrapper.getButtonTextColor());
|
||||||
rulesButton.setBackgroundTintList(ColorStateList.valueOf(mCustomThemeWrapper.getColorPrimaryLightTheme()));
|
rulesButton.setBackgroundTintList(ColorStateList.valueOf(mCustomThemeWrapper.getColorPrimaryLightTheme()));
|
||||||
|
primaryTextColor = mCustomThemeWrapper.getPrimaryTextColor();
|
||||||
|
receivePostReplyNotificationsTextView.setTextColor(primaryTextColor);
|
||||||
int dividerColor = mCustomThemeWrapper.getDividerColor();
|
int dividerColor = mCustomThemeWrapper.getDividerColor();
|
||||||
divider1.setBackgroundColor(dividerColor);
|
divider1.setBackgroundColor(dividerColor);
|
||||||
divider2.setBackgroundColor(dividerColor);
|
divider2.setBackgroundColor(dividerColor);
|
||||||
divider3.setBackgroundColor(dividerColor);
|
divider3.setBackgroundColor(dividerColor);
|
||||||
primaryTextColor = mCustomThemeWrapper.getPrimaryTextColor();
|
divider4.setBackgroundColor(dividerColor);
|
||||||
flairBackgroundColor = mCustomThemeWrapper.getFlairBackgroundColor();
|
flairBackgroundColor = mCustomThemeWrapper.getFlairBackgroundColor();
|
||||||
flairTextColor = mCustomThemeWrapper.getFlairTextColor();
|
flairTextColor = mCustomThemeWrapper.getFlairTextColor();
|
||||||
spoilerBackgroundColor = mCustomThemeWrapper.getSpoilerBackgroundColor();
|
spoilerBackgroundColor = mCustomThemeWrapper.getSpoilerBackgroundColor();
|
||||||
@ -463,8 +479,8 @@ public class PostVideoActivity extends BaseActivity implements FlairBottomSheetF
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
|
public boolean onOptionsItemSelected(@NonNull MenuItem item) {
|
||||||
switch (item.getItemId()) {
|
int itemId = item.getItemId();
|
||||||
case android.R.id.home:
|
if (itemId == android.R.id.home) {
|
||||||
if (isPosting) {
|
if (isPosting) {
|
||||||
promptAlertDialog(R.string.exit_when_submit, R.string.exit_when_submit_post_detail);
|
promptAlertDialog(R.string.exit_when_submit, R.string.exit_when_submit_post_detail);
|
||||||
return true;
|
return true;
|
||||||
@ -476,7 +492,7 @@ public class PostVideoActivity extends BaseActivity implements FlairBottomSheetF
|
|||||||
}
|
}
|
||||||
finish();
|
finish();
|
||||||
return true;
|
return true;
|
||||||
case R.id.action_send_post_video_activity:
|
} else if (itemId == R.id.action_send_post_video_activity) {
|
||||||
if (!subredditSelected) {
|
if (!subredditSelected) {
|
||||||
Snackbar.make(coordinatorLayout, R.string.select_a_subreddit, Snackbar.LENGTH_SHORT).show();
|
Snackbar.make(coordinatorLayout, R.string.select_a_subreddit, Snackbar.LENGTH_SHORT).show();
|
||||||
return true;
|
return true;
|
||||||
@ -514,6 +530,7 @@ public class PostVideoActivity extends BaseActivity implements FlairBottomSheetF
|
|||||||
intent.putExtra(SubmitPostService.EXTRA_FLAIR, flair);
|
intent.putExtra(SubmitPostService.EXTRA_FLAIR, flair);
|
||||||
intent.putExtra(SubmitPostService.EXTRA_IS_SPOILER, isSpoiler);
|
intent.putExtra(SubmitPostService.EXTRA_IS_SPOILER, isSpoiler);
|
||||||
intent.putExtra(SubmitPostService.EXTRA_IS_NSFW, isNSFW);
|
intent.putExtra(SubmitPostService.EXTRA_IS_NSFW, isNSFW);
|
||||||
|
intent.putExtra(SubmitPostService.EXTRA_RECEIVE_POST_REPLY_NOTIFICATIONS, receivePostReplyNotificationsSwitchMaterial.isChecked());
|
||||||
intent.putExtra(SubmitPostService.EXTRA_POST_TYPE, SubmitPostService.EXTRA_POST_TYPE_VIDEO);
|
intent.putExtra(SubmitPostService.EXTRA_POST_TYPE, SubmitPostService.EXTRA_POST_TYPE_VIDEO);
|
||||||
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
||||||
|
|
||||||
|
@ -132,6 +132,43 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="1dp" />
|
android:layout_height="1dp" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/receive_post_reply_notifications_linear_layout_post_video_activity"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:paddingBottom="8dp"
|
||||||
|
android:paddingStart="16dp"
|
||||||
|
android:paddingEnd="16dp"
|
||||||
|
android:clickable="true"
|
||||||
|
android:focusable="true"
|
||||||
|
android:background="?attr/selectableItemBackground">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/receive_post_reply_notifications_text_view_post_video_activity"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:text="@string/receive_post_reply_notifications"
|
||||||
|
android:textSize="?attr/font_default"
|
||||||
|
android:fontFamily="?attr/font_family" />
|
||||||
|
|
||||||
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
||||||
|
android:id="@+id/receive_post_reply_notifications_switch_material_post_video_activity"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
android:checked="true" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:id="@+id/divider_3_post_video_activity"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="1dp" />
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/post_title_edit_text_post_video_activity"
|
android:id="@+id/post_title_edit_text_post_video_activity"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@ -146,7 +183,7 @@
|
|||||||
android:fontFamily="?attr/title_font_family" />
|
android:fontFamily="?attr/title_font_family" />
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:id="@+id/divider_3_post_video_activity"
|
android:id="@+id/divider_4_post_video_activity"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="1dp" />
|
android:layout_height="1dp" />
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user