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

Root Can I Root an LG Velvet G900TM

That's unfortunate, I doubt there is but are there any unofficial ways to unlock the bootloader by chance?
Not by chance......lol

The only way would be for a developer to come up a work around for this. But unfortunately, there is no dev community for your phone. And I heard LG is just like Samsung's snapdragon bootloader's..... They are extremely hard to crack.

Help hba1c test from home

If you're talking about blood sugar tests for diabetes, where you're actually taking and testing blood samples, I'm sure that needs more than just an app on a phone to do that.

IANAD of course. There are probably home testing kits that may have an accompanying Android app that connects to the tester via Bluetooth, for recording your blood sugar test results.
Thanks mikedt for valuable thoughts. But any difference is any from lab or home test?

"app not installed" error on installing rebuild recompiled resigned after editing mod apk editor?

are you coding a new app? or is this for an existing app from another developer?

@ocnbrze bro thanks for replying sharing your precious time and knowledge grateful to see you answering my all posts and get to see you in coding development forum to
Bro I am leaning coding of Android apps by self study but just a beginner starter but not developed yet any app just learnt from help of my expert brothers like you little bit.

I posted this to edit some existing apps as my mobile internal memory is full. Kindly suggest help if you can my 70%. Apps is been moved but 30% still in internal memory stopping me install more apps for technical study r&d

Legit? Application (Mind Games) Suspicous location (GoogleDrive) + a Mystery Screen Recorder? Help!

ok so nothing that you showed us with those screenshots screams that you are hacked or have a virus or anything like that. did you download any apps or games recently? sometimes you can download an app and it will automatically download other apps unaware to you. if it pops back or if another app randomly appears then you have some sort of adware on your phone. you will need to go back and uninstall apps one by one until it stops.

best way is to start with the most recent and work your way backwards. and the best way to ensure a clean uninstall is to wipe data, and cache for the app and then uninstall it. sometimes the data and cache will remain on the phone even if the app has been uninstalled. the adware can hide in these folders so it is best to delete them first before uninstalling the app.

Help Broken screen, need to confirm USB "Transfer files" somehow

So when I connect my Huawei P30 Lite to a computer using USB I internal storage pops up in my Windows Explorer.

But before I can access any of my files/DCIM folder I need to confirm a question-box named "Use USB for" with the choices like "Only charging", "Transfer files", "Mass storage" etc. You know, know that things that pops up on your phone immediately after connecting your phone to a PC using USB.

However, my screen is broken so I cannot confirm this question-box. This is quite frustrating cause I cannot copy over my pictures even though they are right there.
Any smart ways of getting around this? Just need to confirm for "Transfer files" and i'll be good.
with a broken screen there is not much you can do. if you had used google photos then those photos would have been automatically saved to the cloud and you could've accessed them on your pc without having to connect the phone to your pc.

are are other ways but you would have had to have usb debugging turned on and enabled oem unlock in developer's mode....but you need the screen to accomplish those. if you can get that done, then you can use adb to move files around via a command shell on your computer. https://www.thecustomdroid.com/adb-push-pull-commands/

if you can get AirDroid: Remote access & File from the play store to be downloaded and installed, you can use that to wirelessly move files between phone and pc. but i'm pretty sure you will still have to interact with it on the phone, so i'm not so sure if that will work in your case.

Camera doesn't work after lcd replaced

Yes, I did it by myself and I think everything was perfect installed. I just ordered s20+ and screen, fingerprint are working perfectly except camera. My all back camera work perfectly. But in messenger or WhatsApp or apps, I cant used camera and error shows, camera is using in another app.

Check the flexible print connections aren't damaged, and are secure? But it does sound very much like a hardware problem with the replacement part.

Any apps or ways to categories group apps folders in menu view

you can use a custom launcher like nova. it can group your apps onto the home screen as well as your app drawer. i believe that feature is in the prime add-on.....so nova is free, but if you buy nova prime, it will unlock those features and many more. its almost like getting a new phone as their is so much to customize, and yet it is pretty small in size and will not slow your phone down.

Apps Help with sending info from Fragments

Hi guys, new to app development and new to the forum. Am actually enjoying developing apps as opposed to programs because of the layout designer in android studio but recently have run into a real annoying issue that I can't seem to solve. I'm trying to write an app that allows a user to send one email that personalizes individiually to each sitting politician in my country. Had learned that if something was going to be used in more than one place a fragment was better than an activity. But, I cannot for the life of me figure out how to send the info I want from the fragment to the parent activity.

I have been changing this around a few times but thought I had finally got it until I ran into an illegal state exception (full exception is : java.lang.IllegalStateException: Could not find method storeEmail(View) in a parent or ancestor Context for android:onClick attribute defined on view class com.google.android.material.button.MaterialButton with id 'confirmFrag') when hitting the button to confirm the input. Code of the fragment and activity it's attached to below

Java:
public class EmailFragment extends Fragment {
    EmailCreated activity;

    public interface EmailCreated {
        String onEmailCreated(Bundle emailBundle);
    }

    public EditText subjectLineFrag, emailFrag;
    public String emails, subject;
    public Button confirmFrag;
    public Bundle emailBundle;

    @Nullable
    @org.jetbrains.annotations.Nullable
    @Override
    public View onCreateView(@NonNull @NotNull LayoutInflater inflater, @Nullable @org.jetbrains.annotations.Nullable ViewGroup container, @Nullable @org.jetbrains.annotations.Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.email_fragment, container, false);
        emailFrag = view.findViewById(R.id.emailFrag);
        subjectLineFrag = view.findViewById(R.id.subjectLineFrag);
        confirmFrag = view.findViewById(R.id.confirmFrag);

        return view;
    }

    public Bundle storeEmail(View v, EditText subjectLineFrag, EditText emailFrag) {
        String emails = emailFrag.getText().toString();
        String subject = subjectLineFrag.getText().toString();
        emailBundle.putString("message", emails);
        emailBundle.putString("subject", subject);
        return emailBundle;
    }
   
    @Override
    public void onAttach(@NonNull @NotNull Context context) {
        //context will refer to the attached activity
        super.onAttach(context);
        activity = (EmailCreated) context;
    }

    @Override
    public void onCreate(@Nullable @org.jetbrains.annotations.Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }


    //Implement Fragment Lifecycle
    @Override
    public void onStart() {
        super.onStart();
    }

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

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

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

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

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

    @Override
    public void onAttach(@NonNull @NotNull Activity activity) {
        super.onAttach(activity);
    }

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

I thought that by declaring the variables publicly instead of privately the exception would go away but it has not. Here is the code for the activity that wants the data sent to it, although it's very bare bones, had been working on the fragment

Code:
public class GuestActivity2 extends AppCompatActivity implements EmailFragment.EmailCreated {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_guest2);

        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
        transaction.replace(R.id.container, new EmailFragment());
        transaction.commit();
    }

    @Override
    public String onEmailCreated(Bundle emailBundle) {

        return null;
    }
}

I have no idea why this is not working. All I want it to do is send the stuff to the bundle so I can continue with the app.

I don't know if my issue is a small one or a large structural one caused by making a huge mistake in the process of sending it. Obviously if it's a small mistake in the code I'd be much obliged if someone could show me but would also really appreciate if someone could tell me if I'm making a gigantic structural mistake with my code. I've been confused by most tutorials. Have no issue rewriting my code to fit a better template for sending info from fragments, I am just at a bit of a loss as to how to procede

How to overcome rooting Android drawbacks risks?

There are only 2 ways I can think of to recover the stock Android ROM:

1) One a device with a custom recovery you can back the ROM up before modifying it, then you can restore the backup if needed.

2) You can reflash the device with a stock ROM from the manufacturer (method and even availability varies between manufacturers). This will unroot, remove any custom recovery or other modifications, and return the phone completely to stock.

I would usually advise anyone considering rooting to make sure they are able to do both. Find out where to download stock firmware for their phone and how to install it, and download a copy. Then before making any changes to the ROM use a custom recovery to make a backup (often referred to as a "nandroid" backup). If your device allows you to root using the common procedure of "unlock bootloader, flash custom recovery, use recovery to flash other packages to root the phone" you should take the nandroid backup immediately after flashing the custom recovery, before changing anything else (you can also take a second backup later if you want, but backing up before you do anything that might mess the ROM up if it goes wrong is the best plan).

Note that restoring the stock software either way is likely to remove data from your phone. Flashing stock firmware will do a factory reset on most phones. Restoring a nandroid will by default restore the apps and data you had installed when you took the backup, which will overwrite anything you've done since. So either way you should try to back your data up before returning to stock, if you can.

DCIM DOWNLOAD media or any folder redirect sync change default location

What device do you have?
Generally, anything below Android 9 (Pie) Go will have a selection available at the top of the Storage page.

@puppykickr bro thanks.lot for sharing your precious time knowledge advice And opinion and thanks for replying

@puppykickr bro want to redirect change move sync folders default location of folders like download pictures music media video folders which are saved generally in internal memory to automate auto redirect to auto save in external micro SD card and cloud storage is it possible if yes how I founded two apps folder syn folder redirect.

In storage menu in seetings I don't found any such option. To redirect the folders files. But there were option to redirect prefer default apps installation to SD card still which is not in my android 6 mobile was available in one of my Android 5.1

My mobile device is
OS Android 6.0.1 Marshellow Processor Qualcomm Family cortex a53 Machine arrch 64 Architecture arm cortex a53 External memory card 64GB ROM 16 GB MOBILE NOT ROOTED

Filter

Back
Top Bottom