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

Help Galaxy Note 5 battery?

Just for your own reference, with Samsung devices there are three other 'modes' to boot up into using various combinations of the Power, Home, Volume Up, and Volume Down buttons:
Safe Mode
https://www.hardreset.info/devices/samsung/samsung-galaxy-note5/faq/safe-mode/
Recovery Mode
https://www.hardreset.info/devices/samsung/samsung-galaxy-note5/recovery-mode/
Download Mode
https://www.hardreset.info/devices/samsung/samsung-galaxy-note5/download-mode/

Help How do I use intent in such a way that it only switches on two pages without creating any more?

Hi

I was wondering if it is possible to make an app that can switch only between two activities without creating new every time. For example I have MainActivity and Main2Activity. In MainActivity there is a world clock running after pressing a button, and a second button that switch the screen. In the other activity, there is, let's say, a notepad for example and a button that switch back to MainActivity. So, I want to build this app in the way of just switching between these two activities. What I mean by that? Let's run our imagination. We press the first button and the textview which was previously in 00:00:00 format, immediately indicates the world time. Then I press the second button. It brings me to Main2Activity. I write something in the notepad and press the button. It brings me back to MainActivity. I see the world clock still running. I press the second button of MainActivity. It brings me to Main2Activity. Here I see everything I wrote on the first time. I write something additional in there, and press the button again. It brings me back to the MainActivity. I see the world clock still running. I do this process again, and again and again...

I have tried this logic but it definitely didn't work.. I pressed the button, and it indicates the world clock as I thought. Then I pressed the button. It brought me to Main2Activity... I wrote something in there and pressed the button... The world clock was stopped working, and indicated a 00:00:00 by default. I went to notepad, and all the text I wrote was gone! I pressed the "back" button and seen the world clock running, and the text I wrote as well. Then I realized that intent component just creates new pages, that's all!

Now here's the question. How to prevent this happening? How to make this app just switch between activities, instead of creating new pages all the time?


I have explained this as better as I could... I can't explain this better than that.

Help Not Eligible for Pre-Order Bonus?

How do we redeem this promo? do we have to have the shop samsung app?

If you bought from Samsung website it looked like it would let you immediately redeem. I bought from Bestbuy though. As long as you pre-ordered on or before 3/5 you should be eligible. And I believe using the Shop Samsung app is required. Go to app, sign in, then go to inbox, you should have a 'check eligibility' link where it asks you for IMEI, with a handy shortcut that jumps right to phone settings, then long press IMEI to copy, then hit back to get back to promo and put in #. Mine said I wasn't eligible for a week then just today finally worked and went though.

American Truck Traffic Racer: Highway Racing

Become an American truck Traffic Racer and win a Racing Highway

Google Play: https://play.google.com/store/apps/details?id=com.American.Truck.Simulator.Euro.Truck.Driver.Game.Free.Berneons.Games

YwyT7iobNK1uKwTzLrNg9UrLP_JrPEE1-brvzM5pcJ4XFVg7nif0eFJd3__z78OAAsk=w1138-h797-rw



This is a game about a traffic racer on an American truck that drives along the highway racing dodging obstacles. Your task is to hold out as long as possible on the highway. For this you will receive a reward in the form of coins. Still on the way you will meet containers that need to be collected. At the end of the game, you can open them and get even more coins and transport cars from there.

fZv0u6ssBiuVI5SYWHsUJhVaCXluW-jDZevXpzg9R-c7XbANRFihlP1fA86su-1ZerE=w1138-h797-rw


Features of the game American Truck Traffic Racer: Highway Racing
★ Use the ability to accelerate and beat any obstacle on the highway
★ Use time dilation ability to dodge other traffic riders
★ Use your magnet ability and collect all coins and freights on the highway traffic
★ Use your shield ability to gain extra life in racing traffic
★ Use the ability to multiply coins and earn more money and reputation on racing highway

Do not forget to use these abilities to win racing games!

For the money you earn from racing, you can buy new American trucks to show your skill level in road racing!

Good luck on the highway at American Truck Traffic Racer: Highway Racing!


t-2WOTYsBD6eSh-f5jayITioZCthG97SrhhRBUhTqlLvg5mgfCvICwMcP_xmybiluA=w1138-h797-rw

Music Player with best audio quality?

Yeah, its the parametric eq I could never get to grips with. I can remember spending hours tweaking it, and still wasn't that happy. Went back to PA, disabled direct control, installed V4A and a good IRS - job done.

Only now have found some updated V4A recovery flashable zips on xda, that include some Sony mods plus a V4A Atmos hybrid that I'm going to have to try now lol.


"IRS"??

Internal Revenue Service?

Accessories PowerPie 45watt

I didn't know about the 20.000mah limit in Asia. (reason for 26.800 I did alright)
Another good reason for liking this PowerPie :)

I found an interesting PPS power supply for the car so waiting for that to arrive to do some test/review, it got dual ports 55w PPS and 18w QC 3.0 simultaneously.
If it delivers the expected/hoped then it should be a good one for an office on the road

I have a car charger coming that do 45w PD/ 55w PPS simultaneously with 18w QC 3.0
I'll do a separate topic for testing/reviewing that when it arrives, it should be a good travel companion for people on the roads for work.

Bump to an old thread
Today I received a 73W car charger with PD/PPS charging ability that I will test out in real life over the next couple of weeks (it's a car charger and I don't do a lot of driving because of the Corona thing)
Charger is QC3.0 18W / PD3.0 45W /PPS 55W.
I'll do a separate thread on it once I get started testing.

Apps auto start a app while charger connected

Hello everyone,
I am working on a app that automatically open when mobile is connected to charger, i have done coding also but it is not working, please help me this, i am sharing the code below:

Start.java
Java:
package com.androidsmile.labxs;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.util.Log;

import static android.content.ContentValues.TAG;


public class Start extends BroadcastReceiver {




            @Override
            public void onReceive(Context context, Intent intent) {

                if (Intent.ACTION_POWER_CONNECTED.equals(intent.getAction())) {
                    Intent i = new Intent(context, MainActivity.class);
                    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    context.startActivity(i);

                }}}

Manifest

Java:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.androidsmile.labxs">
    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="aandroid.permission.BATTERY_STATS" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
    <uses-permission android:name="aandroid.permission.READ_POWER_STATE" />


    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.PREFERENCE" />
            </intent-filter>
        </activity>
        <receiver
            android:name=".Start">

            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
                <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
                <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
            </intent-filter>

        </receiver>


    </application>



</manifest>

[FREE GAME] Freeze Whiz

Just released this game one week ago, it is one of the hardest casual games on the play store. If you're all about the skill, you should test this and have fun with it.

I would be happy to see your scores.

Link:

https://play.google.com/store/apps/details?id=com.matthewmell.freezewhiz

HsTeBrBWe522GIuUAhMLvb-RdQv9jTVIfCZelza5YmntQTctlA6tv9RuOGm_r6hRHx8=w1920-h937-rw
QxzE3sv6eunvfrcf0N6Gl8PBFcgaMqTzNKkk971yVadrHZLvTGy8hrqS2CvcMrfDGfJB=w1920-h937-rw

qvDIyGcT8kBxs0YPjN1oexgpHzgMAf2uZoxltqYgmwllUtmzpRpfORiu4NyHD-9vBA=w1920-h937-rw



Description:

The penguin's habitat is melting away due to climate change.

Save the penguin by drawing lines of ice. Cover as many holes as you can.

Be fast, be sharp - saving the penguin in not an easy task.

How far can you go?

Have fun!

Share this game to raise awareness for global warming.

PDF Files Recovery App or Recover Deleted PDF Files

Recover your lost PDF files easily with pdf recovery app for android. One of the best app available on the Play store that is giving 100% result while recovery of deleted pdf files. Deleted pdf documents and files can easily scan and can restore into an SD card or in the internal phone storage.

No root access is required while recover lost pdf data only thing that required is a stable network connection because scanning can only be done online. To get all your documents back into your storage you just need to install this app and click on the scan button.

This android application provides the user a very easy and modern interface that is easy to interact with. With just a few clicks, the recovery process starts and it is 100% safe. Stop hesitating! Moves toward the fastest way to recover photos, recover videos, recover audio from your SD card and mobile device.

Easily restore all lost pdf files into SD card or in the internal storage without any difficulty with pdf recovery app. pdf file recovery app also repair corrupt pdf files that can be corrupted because of any reason. i.e. malware
Key features
• PDF recovery app is easy to use
• User-friendly GUI
• Quickly Scan all deleted documents
• One click to restore or recover deleted pdf files
• Deleted PDF restore into SD card or in phone memory
• No root Access is required to recover deleted pdf documentss

Help Nextbook Tablet constantly freezes and crashes

I don't think u quite get my problem. I can't see how u can possibly think a pitch black wall paper that's 92kb in size and has used all of 12 kb of data to keep my eyes from hurting is eye candy. As for Nova Launcher it's 27mb app that uses very little data and yes I disabled Launcher 3 which constantly stopped responding Nova has not once not responded or frozen Nova has 50m+ downloads with a rating of 4.6 on the play store The info in the activities helped me find the hidden apps on my device. KUDOS to CAMERON SUMMERSON, Editor in Chief of How To Geeks. He handles all of the UX writing for Nova. He rewrote all the text from the ground up for the 6.0 launch. Svim, you have single handedly made up my mind to uninstall and leave this forum. Next time maybe you should pay more attention to the help a new member is looking for!!!!!!!!!!!

Help Stuck on LG screen

When I start my Metro PCS L70 it starts up to LG logo and stays there. If I try to reset it, power and volume buttons, I click yes to erase and reset, twice. It goes to android screen says 'erasing' and then quickly flashes to the next screen (barely long enough to read the word 'installing...') and then just goes immediately back to the LG screen and stays. The only thing the phone allows me to do is go to download mode (volume up, plug into PC) which brings me to "Update Firmware" screen and stays at 0%. Can anybody tell me what wrong with it and how I could possibly fix it? I don't believe the phone was rooted, this is how I received the phone
Since it boots into download mode there's hope. Flash the firmware (kdz) file for your device and it should boot normally.

iPhone (Pix, Music, etc.) to S20 Ultra

Here's a nice, almost comprehensive guide on migrating your data out of your iPhone into an Android device:
https://www.computerworld.com/artic...ch-from-iphone-to-android-ultimate-guide.html
It's more focused on using online services to do your transfers as opposed to physical media like microSD cards.
But however you're going to approach this, keep your iCloud account active.

Apps How to get ViewPager to recognize and wrap_content on tab fragments?

My problem:
I 'm having an issue and cannot determine why the ViewPager will not display the tab fragment fields unless I hard code the 'layout_height" parameter? Below I have an image of what happens and what my goal is.

The ViewPager resides in the ConstraintLayout beneath the TabLayout. The 'blueprint" layout provides a visual image of the ViewPager constrained to the ConstraintLayout to expand as needed.

What I have tried:
I have watched 3-4 TabLayout tutorials and read various documentation. The only difference between my project and those is that my activity is not specifically restricted to just the tab layout, but begins after the other fields. However, I'm not sure this has an impact because, as I said, if I hard code the height of the ViewPager each tab fragment content can be seen within each tab.

Let me know what else may be needed to help assist my issue since I provided limited code (see below).


What happens:

Tab with no fields displayed.JPG


The Goal:

The Goal.JPG


The white line is both the ViewPager constrained to the Constraint Layout

ContraintLayout-ViewPager.JPG


Related code (ViewPager setup and ViewPager XML):
Java:
SectionsPageAdapter adapter = new SectionsPageAdapter(getSupportFragmentManager());
        adapter.addFragment(new SourceFragment(noteDetails.get(2), noteDetails.get(3)), "Source");
        adapter.addFragment(new QuoteTermFragment(noteDetails.get(5), noteDetails.get(6)), "Quote and Term");
        adapter.addFragment(new FilesFragment(), "File");
        viewPager.setAdapter(adapter);
        tabLayout.setupWithViewPager(viewPager);

XML:
   //.... tablayout code and items....
   </com.google.android.material.tabs.TabLayout>

    <androidx.viewpager.widget.ViewPager
            android:id="@+id/view_ViewPager"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintTop_toBottomOf="@id/view_Tab_Layout"
            android:layout_margin="5dp"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintBottom_toBottomOf="parent">

    </androidx.viewpager.widget.ViewPager>
</androidx.constraintlayout.widget.ConstraintLayout>

Filter

Back
Top Bottom