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

Android Box Forums?

We have an area for Android TV discussions you might try. Here is a link: https://androidforums.com/forums/tv-video.224/
If all else fails, you are more than welcome to state your problem here in the Android Lounge. There are some very knowledgeable members that frequent this forum. Good luck and welcome to Android Forums.
Thanks, I appreciate the advice or help, suggestions etc.
I am looking in that area of the site right now...
Thanks again.

Help AndroidTV Access Point

If the hotspot utility only allows you to set up it's own separate WiFi network and there are no options to use it simply as an extension to your router's WiFi coverage, there's not much you can do. Which isn't out of the ordinary as a 'hotspot' isn't by design meant to be extender to existing WiFi coverage but primarily used to provide WiFi fed from a cellular signal. You need to have your router acting as the sole gateway to your LAN, so it's the only device providing IP addresses.
You mentioned not wanting to buy anything extra but if your existing hotspot software isn't configurable to your stated needs, perhaps you might want to reconsider that point? It's not even a matter where you need to spend a lot for a high-end router, a typical off-the-shelf router will suffice as a basic extender that will allow you a lot more flexibility to set up both routers to work with each other:
https://www.lifewire.com/connect-routers-on-a-home-network-818060
https://m.wikihow.com/Connect-Two-Routers

The code does not work in the Thread by pressing a button

I'm studying android and stumbled upon a problem! After reading this article in the section Worker Threads: https://developer.android.com/guide/components/processes-and-threads.html
My code
Java:
public void click(View view) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                final TextView t = findViewById(R.id.textView);
                t.setText("Wait...");
                for(int i=0;i<999999;i++)
                    Log.e("test", ""+System.currentTimeMillis());
                t.post(new Runnable() {
                    @Override
                    public void run() {
                        t.setText("Complete");
                    }
                });
            }
        });
    }
Now when I press a button, nothing happens even the text does not change and there are no mistakes. I don’t know what to do, help somebody!

hellow

so teoa could be:
2lbgya8.jpg

which is
Triethanolamine
as TEOA or TELA to distinguish it from TEA which is for triethylamine) is a viscous organic compound that is both a tertiary amine and a triol. A triol is a molecule with three alcohol groups.

or

a google translation of the Maorian language which means cool.

Apps A “clean” MainActivity pattern after the date has been changed

Hi, suppose that after activating the application, the date of 12.07.2019 will be displayed in the upper 'Current Date' header. After the introduction of the products for breakfast, I would like to change the date on 13/07/2019 by pressing imageButtonUp so that the same activity appears but without the entered data, so that I can introduce new products from 13.07.2019. After introducing the products on 13.07.2019, and then pressing the imageButtonDown button, I would like to return to the previous date, where the products I have introduced with the date 12.07.2019 are displayed. How could I achieve this effect? Do I need to connect ImageButtonDown and Up with MainActivity somehow? Or maybe I need to add some new activities? Because now if I introduce products and then press the button, the date changes but the products stay the same. Thank you in advance for each clue, because I have no idea how I could do this task for my project.

For a better illustration of the situation, I present my main_activity.xml:


I does not have ready code for this situation with adding products to meals, but ... I wanted to test this situation on a more trivial example, where the analogical mechanism takes place, and then move the solution to the project with the addition of products. Here is an example on which I tested the solution:

1. So this is my main_activity.xml:



2. This is my MainActivity.java:

Java:
public class MainActivity extends AppCompatActivity {

    TextView textView, textView2, textView3;
    ImageButton imageButtonDown, imageButtonUp;
    Calendar calendar;
    String formattedDate;
    SimpleDateFormat dateFormat;
    Button button;
    private static final int REQUEST_CODE = 1;

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



        textView = findViewById(R.id.textView);
        textView2 = findViewById(R.id.textView2);
        textView3 = findViewById(R.id.textView3);
        imageButtonDown = findViewById(R.id.imageButton1);
        imageButtonUp = findViewById(R.id.imageButton2);
        button = findViewById(R.id.button2);

         calendar = Calendar.getInstance();

         dateFormat = new SimpleDateFormat("dd-MMM-yyyy");
         formattedDate = dateFormat.format(calendar.getTime());

         textView.setText(formattedDate);


        imageButtonDown.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                calendar.add(Calendar.DATE, -1);
                formattedDate = dateFormat.format(calendar.getTime());
                textView.setText(formattedDate);
            }
        });

        imageButtonUp.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                calendar.add(Calendar.DATE, +1);
                formattedDate = dateFormat.format(calendar.getTime());
                textView.setText(formattedDate);
            }
        });

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                Intent i = new Intent(MainActivity.this, SecondActivity.class);
                startActivityForResult(i, REQUEST_CODE);
            }
        });

    }

    protected void onActivityResult(int requestCode, int resultCode, Intent i) {
        if (resultCode == RESULT_OK && requestCode == REQUEST_CODE) {

            Information information = new Information(i.getStringExtra("day"), i.getIntExtra("deegres", 0));

            textView2.setText(information.getDay());
            textView3.setText(String.valueOf(information.getDegrees_Celsius()));
        }
    }

}

3. This is my second_activity.xml:



4. This is my SecondActivity.java:

Java:
public class SecondActivity extends AppCompatActivity {

    EditText editText1, editText2;
    Button button;

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

        editText1 = findViewById(R.id.editText);
        editText2 = findViewById(R.id.editText2);
        button = findViewById(R.id.button);

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                sendInformation();
            }
        });

    }

    public void sendInformation() {

        String day = editText1.getText().toString();
        int deegres = Integer.parseInt(editText2.getText().toString());

        Intent i = new Intent();
        i.putExtra("day", day);
        i.putExtra("deegres", deegres);

        setResult(RESULT_OK, i);
        finish();
    }
}

5. Additional class Information:

Java:
public class Information {

    private String Day;
    private int degrees_Celsius;


    String getDay() {

        return Day;
    }

    Information(String Day, int degrees_Celsius) {

        this.Day = Day;
        this.degrees_Celsius = degrees_Celsius;
    }

    int getDegrees_Celsius() {

        return degrees_Celsius;
    }
}

In this analogous example, after activating the application, the date of 12.07.2019 will be displayed in the upper header. After pressing Go to SecondActivity, I want to go to the second activity, enter information about the day and degrees Celsius, and then press the button Send information, which will help me return to MainActivity. The information will be displayed in textViews. Then, after pressing the imageButtonUp button, I would like to change the date on 13.07.2019 and receive the same activity, but with the cleared information in order to enter new data from the next day. Finally, after pressing imageButtonDown, I want to return to the earlier date 12/07/2019, but I would like to see the information that was introduced on that day.

Thank you in advance for every clue, because I'm stuck in place ..

Root Yureka 2 :NO OS installed .Do you want to reboot ? Clicked reboot.Mobile hangs

Your screenshot tells us nothing though. That's just a standard splash screen.

Are you certain that both the TWRP you used and the ROM you tried to install were built for your model of phone? It's hard to see how a bad ROM flash could trash the recovery if both were compatible with the phone. But even if they were not it's very hard to see how they could trash the bootloader, and the fact that you get a splash screen at all suggests to me that it has not.

I don't know this phone. I assume that you are trying whatever button combination forces restart into bootloader for that model. But if you cannot get into either recovery or bootloader there will be nothing more you can do yourself: you'll need someone with professional kit to reflash it.

Help Wifi access denied

Try what @Dannydet suggested, reboot your router and then see if you're still having a problem. Your listing of things you tried were all based on your Oppo being the problem but it's often just as likely to be a router <> phone issue that's the problem. (It's not just that all your other devices are connecting with your home network successfully, it's the connectivity problem between your phone and your router that's the issue you need to look into.)
What model Oppo do you have and which version of Android is it running?
Do you have an ISP-supplied modem/router unit or do you have your own router? If your own, what model?

What should I do with my formated lost phone after finding it?

I'd done a factory reset for it over the net.
Do you understand what a factory reset does?
But I can't access to an thing on the phone.
The factory reset should give you a phone ready to be set up--like when it came from the factory. Did it prompt you for your Google credentials so you can set it up?
what should I do to access to every thing on the phone like before I'd lost it.
If you mean the apps and data you had on it, that's all gone. The only things that should be on a factory reset device are the Android system and the apps the manufacturer and/or carrier put on it.

After you log in, you can reinstall your apps but, again, all of your data (photos, documents, game data, etc.) are gone.

Filter

Back
Top Bottom