The moment in which I launch my app with Android Studio on my device, two icons of the same app are created.
I already tried to export the apk and install it but it did not work, keep creating two icons of the same application.
Why does...
This is my code but I have errors, someone can kindly help me.
This is my code:
btnBuscarUpdate.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
SQLiteDatabase db = dbHelper...
I wanted to know how I can do so that if response is equal to id of Facebook, go to activity , and that otherwise go to another activity .
When I try with:
if (profil.getId().toString() == response)
and I run...
How to create a list in Java Android of the type dictionary that is to say that content can be stored clave:valor , the key and its value are String .
Update 1
I have done the following:
Map<String, String> l...
I'm using a method to check the internet connection, the problem is that the activity is momentarily suspended at the time this check is done, that's the verification method I found on the internet:
Try to implement it, but it ended with an o...
I'm trying to create a list with simple content, that is, each element is shown in a single line
ArrayList<String> list = new ArrayList<String>();
list.add("Simple Item1");
list.add("Simple Item2");
list.add("Simpl...
I get the following error:
android.content.res.Resources $ NotFoundException: String resource ID # 0xbb8
Error log:
09-29 19:23:27.975 E/AndroidRuntime: FATAL EXCEPTION: main
Process: app.descubrirosona.lite, PID: 27051
android.c...
I'm getting the following message in Android Studio 1.5.1:
Error: Non-debuggable applications
I try to restart it and it still does not work. But before it did work and no plugin or library has been installed or changes have been made...
I am trying to load a Toast Messagge. Inside a class that "paints"
a ViewPager . The problem is that I am having an error when it comes to picking up the context. What could I be doing wrong?
public class ScreenSlidePageFragment e...