I am trying to show a full screen alert dialog like the one on the material design website: Full Screen Material Alert Dialog
I created a
new MaterialAlertDialogBuilder(this)
.setTitle("Title")
.setMessage("Message")
.setPositiveButton("Yes", null)
.show();
which works perfectly. However I want the dialog to appear as full screen with the toolbar and x button, so I can place EditTexts inside the dialog.
I tried using the other constructor MaterialAlertDialogBuilder(context, theme) but I cannot find a theme that will make the dialog appearance full screen. Is there a theme that makes the dialog full screen or do I have to do something else to make it full screen?
try this
MaterialAlertDialogBuilder dialog = new MaterialAlertDialogBuilder(this, android.R.style.Theme_DeviceDefault_NoActionBar_Fullscreen);
Related
In my application I need to show a sheet dialog sliding from top of the whole screen. Now I have a problem, my sheet dialog is showing but under status bar.
Actually view of top sheet dialog
My target is to make a background of status bar the same as sheet dialog (purple) and normally have a clock, battery status etc.
My code:
final Dialog dialog = new Dialog(MainAccountView.this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.sheet_short_settings);
dialog.show();
dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
dialog.getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.getWindow().getAttributes().windowAnimations =
R.style.TopSheet_DialogAnimation;
dialog.getWindow().setGravity(Gravity.TOP);
I tried on few devices so problem is on the code. XML layout for sheet_short_settings starting on the top of whole screen. When I turn on a "Show system UI" the status bar have a background of my layout, but have the dark transparent color.
Thanks in advance
I am using jitsi-android-sdk in which when I go click home screen it takes me to the picture in picture mode and when I click on the app takes me back to the first form page. How should full screen the picture in picture mode when I click on the app?
what should I put in onResume() so I can full-screen picture in picture on click of the app.
For example, When we are using Netflix and watching a movie on mobile when we press the home button it enters the picture in picture mode and when we click on the app icon it fullscreen the picture in picture mode (return to the movie in fullscreen which we are watching)
I want to implement the same behavior in my android app.
The first check which activity is going to paused state when the app goes picture in picture on that activity onResume() method add this code.
#Override
protected void onResume() {
super.onResume();
SharedPreferences sharedpreferences = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);
//get boolean value from shared preferences which we are store when joining meeting button is clicked
boolean check = sharedpreferences.getBoolean(met,false);
if (check){
//if meeting is going on redirect to meeting
//Replace JitsiMeetAcitvity.class with your picture in picture activity class
startActivity(new Intent(this, JitsiMeetActivity.class)
.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT));
}
}
I have used the shared preferences to keep the track of the meeting is going on or not.
If you want to see in detail Follow this
How can I set JavaFX alert height in which dialog's contentText is null? I made an alert and set contentText as null, but dialog's contentText field's height does not became smaller. How can I make contentText field's height as minimum?
Alert alert = new Alert(AlertType.CONFIRMATION);
alert.setTitle("title");
alert.setHeaderText("I want to make dialog without contenttext");
alert.setContentText(null); //this is null but this field is still remain
I just tried like this.
alert.getDialogPane().setMaxHeight(10); //does not work.
Using this method you can customize the size of the alert.
alert.getDialogPane().setMaxSize(2,2);
Default Preview
Preview after the code
Android system's default photo viewing app is used as the default viewer. It functions normally.
The code for photo viewing button is as follows:
//view source image
public void viewSourceClicked(View view){
Uri uri = getImageUri(this, MethodCommons.convertByteArrayToBitmap(itemToBeEdited.getOriginalImage()));
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "image/*");
startActivity(intent);
}
Except, when viewer's share button is pressed showing the share menu, if the user presses power button (closes the screen), then clicking this button after resuming the activity results only in a black screen.
Restarting the app containing the photo-viewing button does not resolve the issue.
This black screen can only be resolved by opening the default photo viewing app and click the share button once. So I figure that it relates to photo viewer's share activity being left open somehow.
How to prevent such black screen from occurring? any other suggestions?
Eventually I figured out that this resulted from using MediaStore.Images.Media.insertImage.
Using FileProvider in place of insertImage solved the problem.
i want to create wallpaper app.
i want user click image show whole image and visible set wallpaper button.
like this pictures
after licked like this
The problem is to show set wallpaper button when image clicked and show whole image.
Thank you!
to display all image display activity use recyclerview with GridLayoutManagerlike this
private GridLayoutManager lLayout;
lLayout = new GridLayoutManager(MainActivity.this, 2);
recyclerview.setLayoutManager(lLayout);
check this link for how to use recyclerview with GridLayoutManager
for display image create a new activity and pass the image when user select image from recyclerview to that activity and display
Ask me in case of any query