Assigned
Status Update
Comments
ra...@google.com <ra...@google.com>
ak...@google.com <ak...@google.com> #2
Same here. I have links in a local html file referencing file:///android_res/drawable/ and on all gradle build flavors using another applicationId (added suffix) the Webview only shows broken links.
This behaviour seems not to be connected solely to Android 5.0 since it occurs on Android 4.4.4 too (tested with current cyanogenmod 11 build).
This behaviour seems not to be connected solely to Android 5.0 since it occurs on Android 4.4.4 too (tested with current cyanogenmod 11 build).
Description
. Reproduce steps:
1) Open Camera2 apk to enter camera preview UI
2) swipe and show the Settings button
3) click the Settings to enter the camera Settings UI
. Result:
you can see that "Resolution & quality" option missing on this UI, while it is exist on android 14 image
. Reproduce device on nxp:
evk_8mp-userdebug 15 AP3A.240905.015.A2 46 dev-keys
Issue can also be reproduced by emulator device: pixel 7 with API 35
. screencap results and bugreport are put in:
. some digs:
if hide the actionbarCameraSettingsActivity.java, "Resolution & quality" option will appear, seems it was overlayed by actionbar.
~/imx_android-15.0/packages/apps/Camera2$ git diff
diff --git a/src/com/android/camera/settings/CameraSettingsActivity.java b/src/com/android/camera/settings/CameraSettingsActivity.java
index 6c76e961c..9e0bd8258 100644
--- a/src/com/android/camera/settings/CameraSettingsActivity.java
+++ b/src/com/android/camera/settings/CameraSettingsActivity.java
@@ -117,6 +117,7 @@ public class CameraSettingsActivity extends FragmentActivity {
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setTitle(R.string.mode_settings);
+ actionBar.hide();
String prefKey = getIntent().getStringExtra(PREF_SCREEN_EXTRA);
CameraSettingsFragment dialog = new CameraSettingsFragment();