Click here to Skip to main content
15,885,172 members
Home / Discussions / Android
   

Android

 
GeneralRe: Android.Content.ActivityNotFoundException: Unable to find explicit activity class Pin
Vimalsoft(Pty) Ltd28-Sep-17 22:44
professionalVimalsoft(Pty) Ltd28-Sep-17 22:44 
GeneralHow are chat application in Android used? Pin
Salfishya Mary28-Sep-17 3:58
Salfishya Mary28-Sep-17 3:58 
GeneralRe: How are chat application in Android used? Pin
Richard MacCutchan28-Sep-17 5:20
mveRichard MacCutchan28-Sep-17 5:20 
GeneralRe: How are chat application in Android used? Pin
Sienna Amelia3-Oct-17 2:07
Sienna Amelia3-Oct-17 2:07 
QuestionSQL server connection in Android Pin
Malashree Halade19-Sep-17 20:26
Malashree Halade19-Sep-17 20:26 
AnswerRe: SQL server connection in Android Pin
Richard MacCutchan19-Sep-17 22:11
mveRichard MacCutchan19-Sep-17 22:11 
AnswerRe: SQL server connection in Android Pin
Vimalsoft(Pty) Ltd25-Sep-17 4:12
professionalVimalsoft(Pty) Ltd25-Sep-17 4:12 
QuestionAccess MySql using php script from Android app.. Pin
Member 1341654718-Sep-17 16:03
Member 1341654718-Sep-17 16:03 
Hello,

I have a super simple php script that runs successfully when I paste the url into a browser (windows, chrome).
(http://xxx.xxx.xxx/myscript.php)

My php code has values hardcoded in it and these values are successfully inserted into mySql database (running on a WAMP).
At this point EVERYTHING is hardcoded in the php.
I appreciate any help, I think I am missing something fundamental (new to android development).


Problem:
I can not access/run this same script from my andoroid app. Do I need to run it async? I simply have the below code in a function that is run when the button is clicked on the phone (using an emulator so phone displays app while I am in debug mode in Android.)

Clues:
It bombs out on the last line. Strangely debug (IOException) value is blank.
Manifest has:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />


*************Code Snippet
URL url;
HttpURLConnection connection = null;
url = new URL("http://xxx.xxx.xxx/myscript.php");
connection = (HttpURLConnection) url.openConnection();
connection.setReadTimeout(3000);
connection.setConnectTimeout(3000);
connection.setRequestMethod("POST");
connection.setDoInput(true);

connection.connect(); <---DIES HERE

************End Code
QuestionRe: Access MySql using php script from Android app.. Pin
David Crow19-Sep-17 9:47
David Crow19-Sep-17 9:47 
AnswerRe: Access MySql using php script from Android app.. Pin
Member 1341654720-Sep-17 16:03
Member 1341654720-Sep-17 16:03 
GeneralRe: Access MySql using php script from Android app.. Pin
Member 1341654720-Sep-17 19:24
Member 1341654720-Sep-17 19:24 
SuggestionRe: Access MySql using php script from Android app.. Pin
David Crow20-Sep-17 16:52
David Crow20-Sep-17 16:52 
GeneralRe: Access MySql using php script from Android app.. Pin
Member 1341654723-Sep-17 15:03
Member 1341654723-Sep-17 15:03 
QuestionFCM notification Pin
Malashree Halade9-Sep-17 3:26
Malashree Halade9-Sep-17 3:26 
AnswerRe: FCM notification Pin
David Crow9-Sep-17 4:55
David Crow9-Sep-17 4:55 
GeneralRe: FCM notification Pin
Malashree Halade9-Sep-17 5:38
Malashree Halade9-Sep-17 5:38 
GeneralRe: FCM notification Pin
Malashree Halade9-Sep-17 5:41
Malashree Halade9-Sep-17 5:41 
QuestionRe: FCM notification Pin
David Crow9-Sep-17 14:31
David Crow9-Sep-17 14:31 
Generalfor googple map serach location Pin
Member 133938216-Sep-17 2:23
Member 133938216-Sep-17 2:23 
QuestionRe: for googple map serach location Pin
David Crow6-Sep-17 3:14
David Crow6-Sep-17 3:14 
QuestionRe: for googple map serach location Pin
Richard MacCutchan6-Sep-17 3:55
mveRichard MacCutchan6-Sep-17 3:55 
QuestionRe: for googple map serach location Pin
thatraja6-Sep-17 4:33
professionalthatraja6-Sep-17 4:33 
QuestionIssue navigating to a Fragment Pin
Vimalsoft(Pty) Ltd3-Sep-17 10:56
professionalVimalsoft(Pty) Ltd3-Sep-17 10:56 
Question(View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
Vimalsoft(Pty) Ltd30-Aug-17 7:22
professionalVimalsoft(Pty) Ltd30-Aug-17 7:22 
SuggestionRe: (View) in a parent or ancestor Context for android:onClick attribute defined on view class Button Pin
David Crow30-Aug-17 10:35
David Crow30-Aug-17 10:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.