MediaController setAnchorview spans whole screen
Tag : java , By : PaulPlum
Date : March 29 2020, 07:55 AM
To fix this issue I fixed this issue, it was to do with the LinearLayout the VideoView was inside. It was set to match_parent and not wrap_content.
|
Adjusting MediaController source issues
Date : March 29 2020, 07:55 AM
fixed the issue. Will look into that further 127 - Here eclipse says it can't find PolicyManager - doesit mean I have to download it too ? I guess there must another solution for that.
|
Fighting Two Specific Issues on Screen Orientation Change (Android)
Date : March 29 2020, 07:55 AM
it fixes the issue When the orientation changes the Activity is destroyed and recreated. The method you would override if using configChanges is onConfigurationChanged. For the keyboard question, sounds like you just need to keep a track of it's state and restore it via the Bundle passed in Activity.onCreate.
|
After screen orientation change the dialogFragment appears apparently without any call
Date : March 29 2020, 07:55 AM
hop of those help? Try removing the dialog from stack using fragment manager instead of just dismissing it. getFragmentManager().beginTransaction().remove(dialogFragment.this).commit();
|
DialogFragment shown as Dialog resizes to full screen on orientation change
Tag : android , By : LinnheCreative
Date : March 29 2020, 07:55 AM
wish of those help I'm implementing a dialog with two EditText fields. According to the Material Design specs, this kind of dialog should be shown fullscreen on smaller devices whereas on large screens it should be shown in a dialog window. , I finally found the source of the problem: setStyle(DialogFragment.STYLE_NORMAL, 0);
|