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

A5 compatibility with web-browser

Hi, i have a Samsung A5. The problem is that when i try to open my website from chrome or samsung web-browser, some icons do not appear properly, and appears to be some type of glitch, however, it works fine with my Samsung galaxy s10, and other mobile phones e.g Oneplus 8, iphone, etc. Chrome is fully updated on my A5 phone.

Just want to know Is there any compatibility issues or other software issue with A5? can't seem to figure out

[31AUG22] AVHH Fold4 update. JULY??? patch.

Samsung are rolling out the AVHH update with the July??? security, bugfix and enhancements release for the Fold4 to the worldwide, F936B, models.

(See post #4 for update)

T-Mobile (USA) users have also received this AVHH update on their Fold4, F936U, phones.

It is a FOTA, (Firmware Over The Air), update and you can check... Settings > Software update... to see if it is available for you. Alternatively, you can connect to the Samsung PC suite, Smart Switch and check via that.

Changelog

  • Unknown at present

System information

1kmIJLTl.jpg


The update = F936BBXXU1AVHH


Download = 371.29MB


Build date = 22 August 2022


Release date = 31 August 2022


Camera version = 12.1.01.69


One UI version = 4.1.1


Android Security patch = 01 July 2022


This is the 1st stable update for the Fold4, F936B, model in 6 days. Average = 1 update every 6 days.



(N.B. This post will be updated as more information becomes available)

App Inventor Question: How to return to ParentFragment with RecyclerView.Adapter from a DialogFragment called tha

I have a Fragment "MyParentFragment" (in a tabbed fragment in a NavigationDrawer Activity). In MyParentFragment sits a RecyclerView, fed from a SQLiteDB. When clicked on a RecyclerView item, a custom DialogFragment "myDialogFragment" is opened and a bundle containing a custom Parcelable object is passed. The DialogFragment contains a button, that does stuff (later).

So far, everything is working.

Now, when I click the button in the DialogFragment, after it did its stuff, I want to return to the DialogFragments parent fragment "MyParentFragment" that has the RecyclerView, if possible showing the RecyclerView item, that was last clicked. Everything I tried so far, crashed the app.

The DialogFragment does not have to return anything (currently a String), I can work around that, but it would be great if it could return a custom object of another class.

Min SDK version is 21, current target version is 32.

This is my first Android Project. I know some Java, but Android development, interfaces, backstacks and such are new to me. I hope you can help me.

This is MyParentFragment:

Java:
package com.example.utnmpg;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;

import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;

import com.example.utnmpg.Database.DataBaseHelper;
import com.example.utnmpg.Database.VPeopleModel;
import com.example.utnmpg.RecView.PeopleRecycleViewAdapter;

import java.util.ArrayList;

public class MyParentFragment extends Fragment
        implements View.OnClickListener, MyDialogFragment.DialogListener{

    private DataBaseHelper dataBaseHelper;
    private ArrayList<VPeopleModel> peopleList;
    private RecyclerView MyRecyclerView;
    private RecyclerView.Adapter mAdapter;

    public MyParentFragment() {
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        dataBaseHelper = new DataBaseHelper(getContext());
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_myparrent,
                container, false);
        MyRecyclerView = view.findViewById(R.id.rv_peopleList);
        MyRecyclerView.setHasFixedSize(true);
        RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(view.getContext());
        MyRecyclerView.setLayoutManager(layoutManager);
        mAdapter = new PeopleRecycleViewAdapter(peopleList, view.getContext());
        MyRecyclerView.setAdapter(mAdapter);
        return view;
    }

    @Override
    public void onClick(View v) {
    }

    @Override
    public void onFinishNoDialog(String inputText) {
        Toast.makeText(getContext(), inputText, Toast.LENGTH_SHORT).show();
    }
}

This is the RecyclerView in MyParentFragment:

Java:
package com.example.utnmpg.RecView;

import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;

import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;
import androidx.recyclerview.widget.RecyclerView;

import com.example.utnmpg.Database.VPeopleModel;
import com.example.utnmpg.MyDialogFragment;
import com.example.utnmpg.R;

import java.util.ArrayList;


public class PeopleRecycleViewAdapter
        extends RecyclerView.Adapter<PeopleRecycleViewAdapter.MyViewHolder>
        implements View.OnClickListener, MyDialogFragment.DialogListener {

    private ArrayList<VPeopleModel> peopleList;
    private Context context;

    public PeopleRecycleViewAdapter(ArrayList<VPeopleModel> peopleListParam,
                                    Context contextP) {

        this.peopleList = peopleListParam;
        this.context = contextP;
    }

    @NonNull
    @Override
    public MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.one_person,
                parent, false);
        return new MyViewHolder(view);
    }

    @Override
    public void onBindViewHolder(@NonNull MyViewHolder holder, int position) {
        holder.tvName.setText(peopleList.get(position).toStringName());
        holder.parentLayout.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                MyDialogFragment myDialogFragment = new MyDialogFragment();
                Bundle bundle = new Bundle();
                bundle.putParcelable("people", peopleList.get(holder.getBindingAdapterPosition()));
                myDialogFragment.setArguments(bundle);

                FragmentManager fragmentManager = ((AppCompatActivity) context).getSupportFragmentManager();
                FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

                Fragment prev = fragmentManager.findFragmentByTag("people");
                if (prev != null) {
                    fragmentTransaction.remove(prev);
                }
                fragmentTransaction.addToBackStack(null);
                myDialogFragment.show(fragmentManager, "people");
            }
        });
    }

    @Override
    public int getItemCount() {
        return peopleList.size();
    }

    @Override
    public void onClick(View v) { }

    @Override
    public void onFinishNoDialog(String returnText) {
        Toast.makeText(context, returnText, Toast.LENGTH_SHORT).show();
    }

    public class MyViewHolder extends RecyclerView.ViewHolder {
        private TextView tvName;
        private ConstraintLayout parentLayout;

        public MyViewHolder(@NonNull View itemView) {
            super(itemView);
            tvName = itemView.findViewById(R.id.tv_ndia_name);
            //onePersonLayout is the id defined in one_person.xml
            parentLayout = itemView.findViewById(R.id.onePersonLayout);
        }
    }
}

And the DialogFragment:

Java:
package com.example.utnmpg;

import android.app.Dialog;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.DialogFragment;
import androidx.fragment.app.Fragment;

import com.example.utnmpg.Database.DataBaseHelper;
import com.example.utnmpg.Database.VPeopleModel;

public class MyDialogFragment extends DialogFragment {
    private TextView tvName;
    private Button btnOK;
    private DataBaseHelper dataBaseHelper;

    public MyDialogFragment() {
    }

    public static MyDialogFragment newInstance(VPeopleModel peopleModel) {
        MyDialogFragment fragment = new MyDialogFragment();
        Bundle args = new Bundle();
        return fragment;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        dataBaseHelper = new DataBaseHelper(getContext());
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        return super.onCreateDialog(savedInstanceState);
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_my_dialog, container, false);
        Bundle bundle = getArguments();
        VPeopleModel peopleModel = bundle.getParcelable("people");
        tvName = view.findViewById(R.id.tv_ndia_name);
        btnOK = view.findViewById(R.id.btn_ndia_ok);

        tvName.setText(peopleModel.getName());

        btnOK.setOnClickListener(item -> {
            Toast.makeText(getContext(), "klicked", Toast.LENGTH_SHORT).show();
            String success = "yes";
            DialogListener dialogListener = (DialogListener) getParentFragment();
            dialogListener.onFinishNoDialog(success);
            dismiss();
        });
        return view;
    }

    @Override
    public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
    }

    @Override
    public void onDestroyView() {
        super.onDestroyView();
    }

    @Override
    public void onResume() {
        super.onResume();
    }

    public interface DialogListener {
        void onFinishNoDialog(String inputText);
    }
}

Thank You

Help Samsung A03s hacked and malware issus please help!!!

Hey everyone,

I've been having alot of issues with my Samsung galaxy A03s phone lately. Just a few question

When Iog into google I always get redirected to https://accounts.google.com/v3/sign...cZmgdAvoKh4if_tJMUxFtEf3KiRzsvrdk51w&pstMsg=1

Or

Attachments

  • Screenshot_20220907-023031_Chrome.png
    Screenshot_20220907-023031_Chrome.png
    113.4 KB · Views: 186
  • Screenshot_20220907-022730_Chrome.png
    Screenshot_20220907-022730_Chrome.png
    141.6 KB · Views: 138

Update to Android 11 ??

my Samsung mobile is telling me to update to Android 11 , is there really anything that is better than android 10 ?? I notice the more Updates the more Likely it is for others to spy on our data & messages .

I also find it very strange when I turned my pc on - suddenly microsoft Edge also Updated automatically , very strange considering I set to - "Not update" !!

Keyboard key lifters..

So I think my mother is speculation on keyboard lifters, I have seen on instantgram there is a foldable one that has a ring, to clip upwards your keys and a brush.. https://www.amazon.com/s?k=pink+key...keyboard+key+remover+tool,aps,372&ref=sr_pg_2 something like this with an entire brush and keyboard cleaner adding it all..


So my question is it worth the money ? And if anyone has one out there and saids "It is worth the money?"

Help Phone screen suddenly starts turning on and off

Hello, I own a Samsung Galaxy J7 Neo and I often run into a problem with the lock screen
The phone screen will go blank (not turn off, just go completely black) and after some seconds turn back again, showing my lock screen, last for a couple seconds and go black again, repeating endlessly. While in this state I cannot interact with anything on the screen no matter how many times I touch, and the notification icons and status icons show the correct information, I named this "blanklock" for convinience
I can restart my phone by just holding the power button while showing my lock screen, in the next black screen cycle it will show the restart button which I can interact with and my phone will restart with no problems, until the next blanklock
I found out this tends to happen when I get a Twitter notification, or when I enter Twitter, but it's not 100% it will; I tried uninstalling it and reinstalling and it persists; althought like I said, it can happen at random, sometimes with days in between blanlocks and sometimes with no more than 10 minutes until then

Another detail worth to mention is the fact that ever since the blanlocks started to happen I cannot open the "Clock style" in the lock screen settings page; and before this started happening, i got a fix color in my lock screen clock and now it's in the "automatic color" mode that changes depending on my wallpaper
I can change the LS wallpaper with no problem, I can change the apps shown in the LS and change lock method with no problems

details worth mentioning of my phone:
flashed an android 9 firmware, originally 8.
no sim card, has sd card
no root



please help! any feedback into what could be causing this is appreciated!

Update to Android 12?

My brother bought a brand new Moto G Power (2022) a few days ago. It is running Android 11 and seems to be running fine. Does anyone know when an upgrade to Android 12 becomes available for this phone?

My Google Pixel 3 has been on Android 12 for months so I assumed an upgrade for my brother's phone would already be available but when I check on my brother's phone, it says it is already up-to-date.

Do the different manufacturers roll out their Android updates on different schedules? I'm just curious what the timing will be for updates.

Help Chrome Google Search and Autocomplete?

I like the Z Fold 3, and Now 4 (I returned the 3), BUT, it has not been a simple changeover for me like on other devices.

I have through some advice here suspended use and installation of Dolphin browser.

I have been trying and using other browsers, one of them being the installed Chrome browser. I don't have anything more than a few instances of using Chrome over the years. I have noticed that when I do a Google search in Chrome, I am getting what I call, or think might be "autocomplete", but again, I am not really sure. This is frustrating me because it keeps auto completing based on prior searches. If I want to search with some of the words used previously, I have to delete some of the words that it is trying to autocomplete. It is a real hassle. I have gone through my Google account and the Chrome settings to see if I can turn off settings that are causing this. No luck so far.

Example:

Search One:
Dogs with black spots

Search Two:
I want to just search for:
"Dogs"
As soon as I start to type "Dogs", it autocompletes "with black spots". The "with black spots" will be in a colored block. I either have to do a backup delete, or upon hitting return, or whatever you call it, it will just search for "Dogs with black spots.

I have exhausted everything I can think of in Chrome settings and my Google account with no real resolution.

I just thought of something as I typed this. I have installed "Gboard" and made Google keyboard the default keyboard. Short of finding something I can change there, I am running out of ways to solve this.

Does anyone have any ideas?

Danny

Practical Mathematics Quiz

Practical Mathematics Quiz



Practical Mathematics
About this app
Mathematics in practical ways
It is aimed to improve yourself by doing ergonomics in a pleasant way in basic and intermediate level mathematical operations.

You can improve your mathematical thinking skills by solving math questions in the app
Math problems in practical ways
Solve math problems in the Easiest ways
Properties:
In this game ;
- Gathering
- Subtraction
- Impact
- Divide
- Finding Average
- Square root
- Equation

2 Bluetooth ear bud sets stopped working!!

Using an LG LDL414DL Android phone. Have two sets of Bluetooth ear buds that I have used successfully for many months. Last night neither pair worked. Just spent an hour trying to pair, optimizing the phone, restarting the phone, updated phone system files, etc., etc.... every tip I could find on the Internet and they just won't pair again. I can set the phone on top of the ear buds and it doesn't find them!!! I finds my laptop even though I removed Bluetooth fro it. This is insane! Another one else ever had this problem???

Help Simplest alarm clock app?

Hello, I'm looking for the simplest alarm clock app possible: where you just press the wake up time (for example 08:17 + OK and that's it. Apps that I have tried so far have too many bells and whistles - I don't need the app to remember the time for future wake ups, no fancy but cumbersome interface with a dial etc - just the most basic thing.

Stupid Simple Alarm Clock was brilliant, but unfortunately it doesn't work well with newer Android versions - system hibernates it and also the wake up time isn't displayed on the message bar any more.

Help ford focus 2006 EU

Hello,

My car is audio and video wired. I don't have device to spot locations. Car is ford focus 2006 EU edition Croatia. Can anyone tell or ask their friends asap who are professionals in that field where I need to check. I am ordinary citizen and scam do that for fun for months. Want my privacy back can't waste time that some idiots disturb my privacy.

Help Samsung S21: some apps are no longer displaying notifications

I have a Samsung S21 running Android 12 and One UI 4.1

Many apps have stopped showing notifications.

For example email: I have tried with Aqua mail, k9 mail and Samsung Email: only the Samsung app actually shows notifications for incoming messages. The other apps will read messages, and if I open the app new email will be there, but they don't show notifications.

Notifications were showing up OK till a few weeks ago. I have tried the IT approach of deleting and reinstalling - nothing.

I have also had non-email apps do this.



Obviously notifications are enabled in the settings, and do not disturb is disabled.



Initially I thought it had something to do with Doze (Android putting apps to sleep after a period of inactivity) but this happens even if the screen is on.



Any ideas?

Filter

Back
Top Bottom