Posts by FlipNovid • 275 points
14 posts
-
-3
votes1
answer281
viewsA: How to use Deep-linking in React Native?
https://github.com/AnkitDroidGit/ReactNative-Deeplink This is a very complete example! But he handles deeep-link No Dynamics-links. Between the two is little difference. Here is how to implement…
react-nativeanswered FlipNovid 275 -
0
votes2
answers48
viewsA: Read Return SELECT Array
Solution was to use the fetchAll() and foreach($Row the $r) $data->execute(); $row = $data->fetchAll(); if( $row == null ){ $users['message'] = "Sem assessorias."; http_response_code(400);…
-
0
votes2
answers48
viewsQ: Read Return SELECT Array
I need to return an array in JSON format. Format is not the problem. The problem is to take the $Row index and display. $db = new Connect; $data = $db->prepare("SELECT * FROM…
-
0
votes1
answer41
views -
0
votes1
answer41
views -
4
votes7
answers10560
viewsA: How to test if an Edittext is empty?
if(meuEditText.getText().length() == 0){//como o tamanho é zero é nulla aresposta meuEditText.setError("Campo vazio"); }else if (meuEditText.getText().length() < 5){ meuEditText.setError("Minimo…
-
1
votes1
answer1105
viewsA: Android - Align Layout above the keyboard
try to put this <activity android:name=".activities.MainActivity" android:windowSoftInputMode="adjustResize|adjustPan"> <activity/>
-
0
votes2
answers5089
viewsA: Find the Sqlite database folder in android studio
In the code of your application you must have the address of your db try this address... Let me know if it works... // The Android's default system path of your application database. private static…
-
1
votes2
answers1725
viewsA: My image does not appear in Imageview
In my case I see the image orientation, is very quiet, try it this way and let me know if it works, If you have a Thumb, show the Thumb, because it is much lighter @Override protected void…
-
1
votes1
answer3334
viewsA: Change background color for Textview
txt.setBackgroundColor(Color.parseColor("#BABABA")); or txt.setBackgroundColor(Color.RED); // set default RED color as background color
-
1
votes1
answer144
viewsA: How do I load the application as user id?
Face if you are saving the user in a table. when you start the app grab your user from the table, and put them in the Application. So from any screen you can access your user. Follow the example in…
-
0
votes3
answers647
viewsA: GPS location returns only null (0.0.0.0)
locationManager.requestLocationUpdates(Locationmanager.GPS_PROVIDER, 1000, 1, this); lets you greatly improve your application.
-
1
votes2
answers2277
viewsA: Read file in Assets folder
in my case I get an image on the Assets the more you change the method according to what you want.... public Bitmap getAssetFile(Context context, String fileName) { Bitmap bitmap = null;…
-
3
votes2
answers120
viewsQ: Uiactivityindicatorview does not work
I want to display the activity after the click of a button. This button will update the app. I followed examples and documentation, but it doesn’t work... - (void)viewDidLoad { // .. snip indicator…