Posts by Gabriel Santana Bonatto • 319 points
14 posts
-
0
votes0
answers27
viewsQ: How to recover the project by the executable?
I have an app on Android, only I lost all my project and it and it is only installed on my phone working properly, is there any way I can recover all the code just by the executable that is on my…
androidasked Gabriel Santana Bonatto 319 -
0
votes0
answers101
viewsQ: Setting the Image String on an Android Imagebutton
I have an Imageview and the path of an image in a String, as I can set in Imageview the path of the image since they are of different types ? public TemaArrayAdapter buscaTema(Context context) {…
androidasked Gabriel Santana Bonatto 319 -
2
votes1
answer109
viewsQ: Element of the Android List
I have a list of sounds, wanted to take each element of the list and emit the sound that is recorded in the bank. Example: when clicking on an element that is in the list, emitted the recorded sound…
androidasked Gabriel Santana Bonatto 319 -
1
votes2
answers84
viewsQ: Stackoverflowerror when calling a class
public class MainActivity extends ActionBarActivity{ Conexao c = new Conexao(); public void tela(){ c.CriaBanco(); } } public class Conexao extends MainActivity{ String NomeBanco = "Cadastro";…
-
0
votes1
answer66
viewsQ: Access Virtual Machine file by Sqlite Browser
My file . db is in the emulator SDCARD, but how do I open with Sqlite Browser that file inside ? Or take that file that is in the SDCARD folder and put in my Desktop ? Exemplifying: My file is saved…
-
6
votes2
answers12679
viewsQ: Where to find the android database path?
SQLiteDatabase BancoDados = null; String NomeBanco = "Cadastro"; CriaBanco(); public void CriaBanco(){ try{ BancoDados = openOrCreateDatabase(NomeBanco, MODE_WORLD_READABLE, null); String SQL =…
-
-2
votes1
answer878
viewsQ: Grab gallery image on android
I would like it to open in the Image Gallery and not in Image contactImgView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new…
androidasked Gabriel Santana Bonatto 319 -
0
votes1
answer6798
viewsQ: View database in Sqlite
Is there any way I can view the Sqlite Database without having to write the command in the application? I would like to see the records inserted in a table, but I do not know if on Android only…
-
1
votes2
answers515
viewsA: How to open a Dialog on android
I looked around and found ExibeDialog(); private void ExibeDialog(){ final Dialog dialog = new Dialog(this); //layout para o dialog dialog.setContentView(R.layout.dialog_som); //define o título do…
-
2
votes2
answers515
viewsQ: How to open a Dialog on android
I wanted to know how to open a dialog so the user can insert text, as soon as he click the button, the box to type is opened and as soon as he type will have a save and cancel button, how can I do…
-
0
votes1
answer325
viewsA: Layout distortion in Bluestack
The only way I found for this problem was to change the format to smaller screen resolution, in case anyone knows of any other solution, I will be very grateful :)
-
4
votes1
answer94
viewsQ: How to create a sound library?
In my application is recorded sound normally, only I wanted to rename the recorded sound and then store in the device. outputFile = Environment.getExternalStorageDirectory().getAbsolutePath() +…
-
2
votes1
answer325
viewsQ: Layout distortion in Bluestack
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"…
-
3
votes1
answer2393
viewsQ: Take the path of an image in the Gallery
How can I get the image path I just uploaded to then save to the database with the path? I took the image of the Gallery, right after with this image I wanted to take the path and save in the Sqlite…
androidasked Gabriel Santana Bonatto 319