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

Help Camera photo location changed by phone

I realised my phone has changed to location of where it saves photos from my camera.
For years it's been on the SD card. Now it has changed to internal storage.

I tried to change it back to the SD card, but when I do I see this message:
“Cannot save file to SD card, default location changed to internal storage”

The SD card isn't full - I've used about 4Gb, with 12Gb free.

Any ideas why this is happening, and I can go back to saving on the SD card somehow?

Convert Webpresence (Wordpress/FBpage/etc) to Android App - Please Recommend

Hi.
I am seeking recommendations for easily creating an Android app which uses an existing self-hosted Wordpress site or Facebook page as a "backend"; other platform suggestions welcomed.
The most important functions will be:
- user ability to create subscriber account (wp), or follow/like (fb).
- user ability to create a post.
- user ability to comment on a post.
- user ability to like and/or upvote a user comment.

i have tried appypie, appmaker, and ibuildapp so far. but none have ability to like or upvote submitted comments, that I can see.

thanks!

Notifications during calls

My previous phone was an S8, my current phone, a 10e. I work in a loud shop, so my call and text notifications are intentionally loud and long. Was a time, when I was on a call, if a text came along, I would get a vibe as a notification. Seems reasonable right? But since one of the late summer updates, my 8 began blasting my notification in my ear while on a call, at whatever volume it was set at, usually full crank. Can't hear what's being said while it's bending my ear drum. I never found a setting for this, and needless to say, it's obnoxious. And my 10e does the same thing, and I still can't find a way to change it. Amongst the several things I don't like about the latest iterations of Pie, this is the most aggravating. Does anyone have this problem or can offer a solution? tia, zz03

I need help with Remote ADB Shell

I am trying to do what is in this video but I am having a problem it will never connect on Fire TV at all and I have restarted the Fire TV and cut ADB debugging off and on and cut it off and restarted the Fire TV and still get a connection issue and I don’t know what to do to fix this either and the person talks about work arounds but doesn’t explain how to do all of them either.
Does anybody know how to fix these problems at all

Sd card greyed out

Ok Question when I move apps to my sd card and I turn off my phone or it restarts the apps i moved over are greyed out and i have to redownload them again why is this doing that

Ok Question when I move apps to my sd card and I turn off my phone or it restarts the apps i moved over are greyed out and i have to redownload them again why is this doing that

Ignore the first pic

Attachments

  • Screenshot_20191201-112038_mobile forums.jpg
    Screenshot_20191201-112038_mobile forums.jpg
    139.9 KB · Views: 214
  • Screenshot_20191201-104356_One UI Home.jpg
    Screenshot_20191201-104356_One UI Home.jpg
    477.9 KB · Views: 302

No 4G LTE (Straight Talk) US996 on 10F

No matter what I try, I can not get 4G LTE to show up on my phone. I put my SIM card in the wife's phone and 4G LTE works perfectly.

FWIW, it used to work just fine; I've verified all my settings (APN, etc) in the phone (I'm using the Verizon Network thru ST), BTW. Can someone verify the correct NETWORK TYPE setting?? Global or ???

As an aside, I enter my IMEI on Verizon web page and it says my phone will not work on their network; funny I was using the phone on their network for a year until I switched to ST.

Anyone??

Thanks...... Boowho??

App Inventor Navigation drawer & Google Maps

Greetings!

I just started working on a faculty project which is an app for quickly renting bicycles from anyone willing to give them. For this, I'm going to use the Google Maps API. I managed to launch a Google Maps application and now the next step would be to add navigation drawers, buttons and other items on top of it (or shrink the map's size on the screen).
How should I proceed?

Thank you!

Apps How can I force a button to be at the bottom of the screen?

Hello all, I am trying to design an activity but I am having problems trrying to put the button at the bottom of the screen. ¿How can I do it?
This is my XML file:

Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <TextView
        android:id="@+id/tvAViajar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="56dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="25dp"
        android:text="@string/actividades"
        android:textColor="@color/colorPrimaryDark"
        android:textSize="28sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/tvDestinoViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="56dp"
        android:text="@string/destinoActividad"
        android:textSize="22sp" />


    <EditText
        android:id="@+id/etDestinoViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="12dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="@string/etdestinoActividad" />

    <TextView
        android:id="@+id/tvFechaViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="6dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="5dp"
        android:text="@string/fechaActividad"
        android:textSize="22sp" />


    <EditText
        android:id="@+id/etFechaViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="15dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="@string/etfechaActividad" />

    <TextView
        android:id="@+id/tvHoraViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="5dp"
        android:text="@string/horaActividad"
        android:textSize="22sp" />

    <EditText
        android:id="@+id/etHoraViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginEnd="56dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="@string/ethoraActividad" />

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:background="@drawable/ripple_effect_primary"
        android:text="@string/buscar_actividades"
        android:textColor="@color/white" />


</LinearLayout>

And this is how it looks like:

Captura.PNG


Thanks all.

Neither one can do anything

So i bought a new phone 2 weeks ago. I had a Samsung Galaxy S3 for about 4 years so i upgraded to a Samsung Galaxy A20. I switched my old number to the new phone. Everything was cool. At lease for a week and a half. Then my phone stopped receiving Mobile Data. It couldn't connect to a network. I could still call, text, and connect to Wifi.

So I hit up Boost Mobile (my carrier) and chatted with them online. I'll upload that chat. The words in Green are me.

Basically we went thru a bunch of step to correct this problem. But in the end I was told I had to contact Samsung about this problem. My phone is still under warranty being that I bought it less than 2 week ago.

So I chatted with Samsung. They gave me a link to help me. But it took me to a list of things that i already tried. So I let them know that this was already attempted and failed.

So Samsung told me i'd have to talk to my carrier (Boost Mobile) about this because it was a carrier problem.

I go back to the Boost Mobile store I bought the phone. I tell them the whole story. They tell me i need to go to a Samsung store and have them look at it. There is no Samsung store in Las Vegas. But there are 2 authorized Samsung repair places.

I go to one of them. Tell them the story. So he hooks up my phone to run a diagnostics on it. He then tells me that an error came up. And told me that my carrier was the one blocking the data from getting to my phone. I'll upload that too.

By this time I'm running late for family stuff I have to do. So i couldn't call or chat with anyone from Boost.
A few hours later and now I can't make phone call or texts at all. If i try to make a call it tells me i have to enter a credit card number for payment to place the call.

So that's where i'm at.

Boost Mobile says they can't help me. I have to talk to Samsung.
Samsung says they can't help me. I have to talk to Boost Mobile.

Has anyone ran into this problem? Or have any ideas on what to do?
I'm frustrated like crazy...

Attachments

Constant reboot

I have a Galaxy Tab A 8" which just received a security update (2019-11-30) and now it just constantly reboots -- gets to the logo screen and then just reboots again. Tried using the hardware reset (needle hole) and it didn't even recognize it. Tried holding the VolUp button to get to the loading screen and that does display the blue "Installing system update" screen for about .5 seconds and then it shows a blue Error screen and just goes back to a reboot again.

Any other options?

Mhl help

Hi*, new here. Just bought the z4, love the phone. But it does not have MhL compatibility. Is there a way to convert this to be MhL compatible? Can this be rooted to make this happen?
I use my phone for teaching, so my ability to play videos and movies on a TV is Paramount. I have no internet or wifi being that I live in the country. Anyone please help

Help The ADW version 1.3.4.0 launcher..

So I download this the other day, it is a bit confusing, not able to add in the really nifty clock widget I played with the first ADW (One with the white house in an orange circle icon.) it was really amazing, still this one I am confused on a few things.

1) Where is the widget space, I mentioned before of this really nifty clock widget on able on how the,
time and battery power is at, sure if I move my hands over the phone I can see it, but I rather have it on a widget to see it better. It is still new to me.

2) of the apps is like over lasping the font and text, is there a way how to make them more free? Instead of on being on a grid? It is pretty odd on how condense they really look at, screen shots are coming, so excuse the delay over ____ of days that can pass me on by, and forget to check my email for notifications.

3) Apps seem short, lack of as I mentioned about the nifty dyi clock widget that did come through the first one, I like it so I can play as I please.


That is it ontop of my head.

Phone is Moto z2 force.

Help Restrict Qobuz to wifi only

In Andriod 9 > connections > data usage > Mobile data usage > Qobuz I have unchecked Allow background data useage because Qobuz uses mobile data to download music files on my A7 phone ( on my tablet Qobuz uses wifi; the machine I used to add a new playlist - all it's got on that machine) . My mobile data is getting caned on my phone.

How do I setup Qobuz to only use wifi?

If I turnoff mobile data Qobuz refuses to update; just updated my playlist on my tablet but when I open Qobuz the playlists on my phone it give me an error saying " Network error unable to complete this action" (If I go to another wifi only tablet the playlist updates)

Filter

Back
Top Bottom