• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

reply-to in email client

Odds are whatever restrictions they set up are there to be in accordance with established security policies, so yeah, for those who want to intentionally cheat the system for whatever reasons it's not like they can control everything.

The company isn't tiny, but it isn't exactly Boeing. They've been using Google managed email for about five years, but recently hired some head of IT who views IMAP (on Google's servers, mind you) as a security risk. I've seen these IT guys come and go, and most of them are just nerdy control freaks who go into some passive aggressive mindset when they realize that some of the employees at a particular branch were fluent before they were born.

So dissapointed in Huawei Y9 Pro

Actually, I am so disappointed with my new Android device. The specification described it as excellent. But it has issues with the fingerprint. Couldn't apply themes because it does not compatible (I guess) now I discovered that the front camera quality is out of questions. Samsung Z1 has a better camera. The quality is really low and I can see the pixels in the picture. I don't know what to do with it.

What themes are incompatible, ones from the Huawei EMUI Theme Store, or some other third-party ones?

Help Whatsapp backup and restore problems

Q1: airplane mode. If you need to use WiFi to download then you can turn it on in airplane mode, but if WhatsApp is active there would then be the possibility of new messages coming in.

Q2: go into settings, apps, find WhatsApp, clear storage for the app. Then use your favourite file browser and erase the WhatsApp folder from your internal storage (or SD if it's there instead - it's been so long since I used a phone with an SD card that I don't know whether WhatsApp allows you to move that folder there).

Q3: it's been a long time, so I don't remember, but this sounds like what's described here: https://faq.whatsapp.com/en/android/20970873/

Battery saver settings

Hello!! I just noticed today that vibration is deactivated when the battery saver extended is on.. is there away to still have vibration on for notifications while this is on??
Yes you can. In Settings - General, go to Battery, then Battery Saver. You will see the three boxes labeled Off - Extended - Maximum. Tap on the level you want to change. (In my screenshot, I tapped on Extended. Follow the instructions in Red and tap "Turn on". After tapping, you will be back on the screen with the three boxes. In my case the "Extended" box that I selected is now blue. (If you originally chose the "Maximum" box, it would be blue. Just under the "Off" box there will be a line that says "Edit mode" (in white). Tap that. You will be brought to the settings of the box in blue. There you can make the adjustment you want. I hope this was clear. If not, you can ask me to clarify, I won't be offended. Good luck :thumbsupdroid:
Screenshot_20190816-022512.png

Debugging release

After debugging on my phone directly, i found it was completely unrelated to any changes I had made.

I had, for unrelated reasons, disabled location services. Permission was granted, but there was no location to get, and I wasn't handling the null object correctly!

So, even though an unrelated issue, it led me to a bug I didn't know I had. A fortunate accident.

Custom Notification - Paddings

That would seem to indicate that you need to provide multiple layouts for different screen resolutions and pixel densities, with the padding different for each, if it's really that important to match exactly.

I think at this point I would be questioning if it's that important to get that close of a match, or look at alternative approaches to accomplish the desired result.

Feature Graphic

If you want to see featured graphics in action, open the play store app on your phone and scroll down till you see "[Ads] Suggested for you". Those are all featured graphics.

edit:
There's a few rows of "[Ads] Suggested for you". Scroll down till you get to the row displaying rectangular images. Those are all featured graphics.

Thanks - now I can see some! I appreciate all the help!

Apps Android 6 - how to open Firefox from my app?

In Android 4 & 5 the following code worked perfectly:
Java:
private void shareImageWithUri(Uri uri) {
        Intent intent3 = new Intent(Intent.ACTION_MAIN, null);
        intent3.addCategory(Intent.CATEGORY_LAUNCHER);
        intent3.setComponent(new ComponentName("org.mozilla.firefox", "org.mozilla.firefox.App"));
        intent3.setAction("org.mozilla.gecko.BOOKMARK");
        intent3.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent3.putExtra("args", "--url=" + uri.toString());
        intent3.setData(uri);
        startActivity(intent3);
    }

It opened a FF instance and navigated the Firefox at the passed url. In Android 6 I am still getting the FF opened, but it does not recognize the passed url and therefore leave the tab clean. How can I pass an url in app start arguments in Android 6?

Questions about Gallery Apt

It's probably not the gallery app saving things, but some other app saving things and them showing up in the gallery (because that will show any images it find anywhere on the phone). Have you checked which folder these images are actually stored in? It may be something unhelpful like "Downloads", but there's a chance that the location will help identify what is doing it.
Thanks for the tip. I checked and they are all in "UnityAdsCache". So they are from the ads in a game. And I know which game. If I put the .nomedia file in that folder and I it worked as far as the Gallery app. Of coarse the pictures are still on my phone. So I found an app that cleans out the caches on my phone and it does clean out these ads also. So again, thanks for the tip that got me started.

Filter

Back
Top Bottom