Posts by Jhonas Kenne Boeno • 113 points
4 posts
-
-1
votes3
answers1285
viewsA: Why new Alertdialog.Builder(getApplicationContext()). create() does not work?
This is an example of a Alertdialog. AlertDialog.Builder ADBuilder = new AlertDialog.Builder(MainActivity.this); ADBuilder.setIcon(R.drawable.ic_dialog_info); ADBuilder.setTitle("TÍTULO DO ALERTA");…
androidanswered Jhonas Kenne Boeno 113 -
0
votes1
answer1909
viewsQ: Why is the eclipse autocomplete function not working within the Onclicklistener?
I was writing my codes normally when one day I realized that Eclipse (the program I’m using to make Android apps) is not completing my words, for example: I have a variable called 'Functions', when…
-
5
votes1
answer3020
viewsQ: What is the best way to create methods accessible to any Ctivity?
Hello. When I need to create a method for an Activity I simply write it in my Activity code. For example: package com.pcriot.maxsoft.testapplication; import android.os.Bundle; import…
-
6
votes3
answers3192
viewsQ: Why so many folders with the name "Drawable" on Android?
I have a silly question. I already know the folders Drawable in the Android is to put the images with the relative resolutions. For example, the folder drawable-ldpi is to put images with low…