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

Any idea what this app is?

Assuming that these are notifications that you're seeing in the notification panel dropdown, sliding down the panel and reading the full notification should tell you (or at least give you a very good idea) exactly which app it's from. If you really still can't figure it out after reading the notification, press and hold on the notification, and it will tell you

Samsung Galaxy A10e APN Setting Question

Bascially which one of these do I select to give me what my service provider has as the needed setting of default,supl,mms, as this is not listed this way on my phone. My service provider is Petro Mobility but does not give support for data setup and told me to contact the phone manufacter. Any help would be much appreciated.
If your provider is refusing to assist you with setting up the data connection, that is horrible customer service and you should probably choose a new provider. The phone manufacturer cannot assist in any way, as each provider's APN settings are unique

question about lg v40 thinq picture message error

?

I don't understand.

Creating what file?

The link is to an app you put onto the phone.

You would find and delete the photos from there.

Or, you could search through the settings on your messages app and try to find something about cleaning up old messages.

But if they are no longer on your device, the remnants that you see are thumbnails.

Another idea- some file recovery apps can allow you to see such things and delete them as well.
I would post a link, but I can't remember what app I used for that.

Ohh okay I was doing it through the "file manager" app that comes pre installed on the phone in the management folder. Can it not be done there? And the file I would have created would have been the .thumbnails one you mentioned.

How long does it take before AccuBattery's stats are in the right ballpark?

Is the replacement battery the same capacity as the original battery or is it a higher? Since it's a third-party, off brand battery that might affect how the AccuBattery app detects and monitors it.
When I was reading through the feature list of a different app, the AIDA64 hardware/software assessment utility, there was a reference that might be pertinent to this situation:
- Battery capacity can only be reported for factory default batteries. If the battery was replaced with an extended capacity battery, neither Android or AIDA64 will be able to detect the new capacity.
https://play.google.com/store/apps/details?id=com.finalwire.aida64&hl=en_US&gl=US
I'm assuming that there's an issue involving a phone's existing power management circuitry and a battery's circuitry that will probably apply to how AccuBattery functions too.
If you start up the AccuBattery app, tap on the 'Charging' tab at the bottom, scroll to the bottom and tap on the Set Design Capacity link, that should show the battery's capacity rating. If not, manually enter it. Then wait a few days, it typically takes several charge cycles for any reliable numbers to get collected and assessed. But again, is this new battery the same capacity as the original?

Apps Using processing-core library with alarmmanager

Hi,
I am trying to get some some processing code via the processing-core library to to be implemented from the broadcast receiver in some alarm manager code in Android Studio.

I started by creating a simple alarm manger App that fires an alarm every minute (user settable) and this works fine. I then created an App that makes use of the processing-core library (imported the library as a jar dependency into android studio) and this also works.

The next step was to amalgamate the above and create an App that fires a sketch class from the broadcast receiver that includes some simple processing code but i am unsure as to how i do this.

My attempt at doing this is shown below. The only class that creates errors is the broadcast receiver class which creates errors related to frameLayout, setContentView and Fragment.setView.

Any help with this is much appreciated.

Cheers.

All classes and XML file are shown below:

MainActivity.java
Code:
public class MainActivity extends AppCompatActivity {
    private PApplet sketch;
    Button start;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        start= findViewById(R.id.button);

        start.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                startAlert();
            }
        });
    }

    public void startAlert(){
        EditText text = findViewById(R.id.time);
        int i = Integer.parseInt(text.getText().toString());
        Intent intent = new Intent(this, MyBroadcastReceiver.class);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(
                this.getApplicationContext(), 234324243, intent, 0);
        AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
        alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()
                + (i * 1000), pendingIntent);
        Toast.makeText(this, "Alarm set in " + i + " seconds",Toast.LENGTH_LONG).show();
    }
}

Activity_main.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.alrmmngrplusprocsktch.MainActivity">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="103dp" />

    <EditText
        android:id="@+id/time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="22dp"
        android:ems="10" />
</RelativeLayout>

MyBroadcastReceiver.java
Code:
public class MyBroadcastReceiver extends BroadcastReceiver {
    private PApplet sketch;
    
    @Override
    public void onReceive(Context context, Intent intent) {
        FrameLayout frame = new FrameLayout(this);
        frame.setId(CompatUtils.getUniqueViewId());
        setContentView(frame, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.MATCH_PARENT));

        sketch = new Sketch();
        PFragment fragment = new PFragment(sketch);
        fragment.setView(frame, this);
    }
}

Sketch.java
Code:
import processing.core.PApplet;

public class Sketch extends PApplet
{
    int x = 0;
    double h, h2;

    public void settings()
    {
        fullScreen();
    }

    public void setup()
    {
        background(0);
        noStroke();
        fill(102);
    }

    public void draw()
    {
        //background(0);

        h = height*0.2;
        h2 = height*0.6;
        rect(x, (float)h, 1, (float)h2);
        x = x + 2;
    }
}

How migrate Samsung -> Oppo ?

I mean samsung notes. Syncios problems: it cost 30 usd and is only for win and mac but i prefer Linux. I have Windows on very poor laptop only.
On Samsung notes you can opt to allow you to sync with a Samsung account. You can then sign in to Samsung on your new phone and as along as Samsung notes is available for your phone you should be able to get it to sync your notes.

Or you can save the note as a file and move them to your new phone.

Can't you setup a virtual Windows within Linux and run the program that way? Sunny know too much about Linux to help out with that.

Help BLUESTACKS/GOOGLE PAY BULL$SHIT PLEASE HELP

I believe the Google Pay app can only be used on approved phones and tablets, and an emulator running on a computer isn't one of them. Apart from no lock(PIN or pattern) on the Android environment that the BlueStacks emulator uses, AFAIK it also appears as a rooted device to Android apps, and Google Pay won't run on a device that's been rooted. It's the same with most banking and financial apps, they usually only run on approved phones and tablets.

Messenger App will not notify when asleep

I'd suggest trying a different SMS app. There is nothing special about the apps that manufacturers choose to install, so if they pre-install a crap one there is no reason not to just find a better one and use that instead. As a starting place you could try Textra, which is very popular here.
Thank you. I think I will do that. It's been working okay for a few days and now it's gone crazy again. Tonight it was not make any sound, then it started with one and changed to another sound, and then the next time all it did was make a very soft single dull beep.

Filter

Back
Top Bottom