Questions tagged as 'android'

3
answers

Show items from a list from the bottom up on Android

I have a custom listview in my android application, but I have a question I want to know how I show the data I add to that list from the bottom up like chat apps. Below I share my code <?xml version="1.0" encoding="utf-8"?> <Linear...
asked by 18.05.2017 / 17:59
1
answer

icon application android studio

I have created an icon by entering a png image for the application using "image assets", launcher icons and meta the image that you put, in the mobile appears the small icon, much smaller than the normal applications that I have installed....
asked by 21.05.2017 / 20:13
1
answer

Rounding Decimas de Double keeping the tenths [duplicated]

tvTotalCommande.setText(String.valueOf(totalCommande)+"€"); tvTotalRegler.setText(String.valueOf(totalDescuento+"€")); tvRemises.setText(String.valueOf((totalCommande-totalDescuento)+"€")); In TotalCommande write me 5.5 In Remises...
asked by 25.04.2017 / 23:29
1
answer

How to interpret sqlite insert response

I am implementing sqlite in app, but the insert returns -1, as I interpret the messages. That's how it works public long IngCliente(SQLiteDatabase db, cliente cliente) { return db.insert( clienterEntry.TABLE_CLIENTE,...
asked by 21.04.2017 / 02:03
1
answer

Problem to synchronize Gradle in Android Studio 2.3

I just installed Android Studio 2.3 and when creating a new project I get the following error with gradle. I already managed to download manually but still I still get the same error Error:Failed to resolve: junit:junit:4.12 Error:Failed to re...
asked by 20.04.2017 / 22:13
1
answer

Counter in RecyclerView updates the TextViews of all rows

public class RecyclerViewAdapter_Restaurant extends RecyclerView.Adapter<RecyclerViewAdapter_Restaurant.mealViewHolder> { private List<Meal> mealList; private LayoutInflater mInflater; private Context mContext; private int cantidadCom...
asked by 21.04.2017 / 18:11
1
answer

Problem when scanning Wifi networks in Android Studio, it does not show me the SSID

I am using the following code but it does not show me the BSSID in the list of Wifi networks, public class MainActivity extends AppCompatActivity { ListView lv; WifiManager wifi; String wifis[]; WifiScanReceiver wifiReciever; @Override protec...
asked by 27.07.2017 / 08:31
1
answer

Android Background of Spinner Dialog

I have the following spinner <android.support.v7.widget.AppCompatSpinner android:id="@+id/origin_account" android:layout_width="match_parent" android:spinnerMode="dialog" android:la...
asked by 11.09.2017 / 14:48
1
answer

List WhatsApp contacts

Is there any way to get the contacts that have Whatsapp between all the contacts obtained from the phone? My tests have only been to obtain all the contacts and obtain their fields, to see if there were any "whatsapp ...": ContentResolver c...
asked by 07.09.2017 / 17:17
1
answer

How to decrease memory consumption in Android App

Hello friends, I have a question for you. I have an android app which basically are two activities the main_activity and a details activity . The first has a recyclerView with elements and when I touch one I enter the activit...
asked by 16.06.2017 / 18:37