Click here to Skip to main content
15,868,016 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: Low ethernet speed problem Pin
Richard MacCutchan18-May-13 21:08
mveRichard MacCutchan18-May-13 21:08 
GeneralRe: Low ethernet speed problem Pin
A_Fa18-May-13 21:16
A_Fa18-May-13 21:16 
GeneralRe: Low ethernet speed problem Pin
Richard MacCutchan18-May-13 21:51
mveRichard MacCutchan18-May-13 21:51 
QuestionHow to develop a sample android app in MS Visual Studio using C#.net ? Pin
Rabbil17-May-13 21:07
Rabbil17-May-13 21:07 
AnswerRe: How to develop a sample android app in MS Visual Studio using C#.net ? Pin
Richard MacCutchan17-May-13 22:52
mveRichard MacCutchan17-May-13 22:52 
AnswerRe: How to develop a sample android app in MS Visual Studio using C#.net ? Pin
Prasad Khandekar30-May-13 6:27
professionalPrasad Khandekar30-May-13 6:27 
GeneralRe: How to develop a sample android app in MS Visual Studio using C#.net ? Pin
Rabbil30-May-13 19:42
Rabbil30-May-13 19:42 
QuestionHaving Problem to Run JTwitter.jar in Android. Pin
mAzeem2211-May-13 1:58
mAzeem2211-May-13 1:58 
I am trying to run this coding in Android...

<b>public void onClick(View v) {

final String status = editstatus.getText().toString();
new Thread() {
public void run() {
try {
Twitter twitter = new Twitter("student", "password");
twitter.setAPIRootUrl("yamba.marakana.com/api"); twitter.setStatus(status);
} catch (TwitterException e) {
Log.d("StatusActivity", "TwitterException" + e);
e.printStackTrace();
}
}
}.start();

Log.d("StatusActivity", "onClicked " + status);

}</b>

// and i get the error

<b>05-11 16:47:20.526: D/gralloc_goldfish(1037): Emulator without GPU emulation detected.
05-11 16:47:21.455: W/IInputConnectionWrapper(1037): showStatusIcon on inactive InputConnection
05-11 16:56:26.915: E/dalvikvm(1037): Could not find class 'winterwell.jtwitter.Twitter', referenced from method com.example.listviews2.StatusActivity$1.run
05-11 16:56:26.915: W/dalvikvm(1037): VFY: unable to resolve new-instance 562 (Lwinterwell/jtwitter/Twitter;) in Lcom/example/listviews2/StatusActivity$1;
05-11 16:56:26.925: D/dalvikvm(1037): VFY: replacing opcode 0x22 at 0x0000
05-11 16:56:26.925: W/dalvikvm(1037): VFY: unable to resolve exception class 563 (Lwinterwell/jtwitter/TwitterException;)
05-11 16:56:26.925: W/dalvikvm(1037): VFY: unable to find exception handler at addr 0x14
05-11 16:56:26.925: W/dalvikvm(1037): VFY: rejected Lcom/example/listviews2/StatusActivity$1;.run ()V
05-11 16:56:26.938: W/dalvikvm(1037): VFY: rejecting opcode 0x0d at 0x0014
05-11 16:56:26.938: W/dalvikvm(1037): VFY: rejected Lcom/example/listviews2/StatusActivity$1;.run ()V
05-11 16:56:26.938: W/dalvikvm(1037): Verifier rejected class Lcom/example/listviews2/StatusActivity$1;
05-11 16:56:26.938: D/AndroidRuntime(1037): Shutting down VM
05-11 16:56:26.938: W/dalvikvm(1037): threadid=1: thread exiting with uncaught exception (group=0x409961f8)
05-11 16:56:26.984: E/AndroidRuntime(1037): FATAL EXCEPTION: main
05-11 16:56:26.984: E/AndroidRuntime(1037): java.lang.IllegalStateException: Could not execute method of the activity
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.view.View$1.onClick(View.java:3039)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.view.View.performClick(View.java:3480)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.view.View$PerformClick.run(View.java:13983)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.os.Handler.handleCallback(Handler.java:605)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.os.Handler.dispatchMessage(Handler.java:92)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.os.Looper.loop(Looper.java:137)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.app.ActivityThread.main(ActivityThread.java:4340)
05-11 16:56:26.984: E/AndroidRuntime(1037): at java.lang.reflect.Method.invokeNative(Native Method)
05-11 16:56:26.984: E/AndroidRuntime(1037): at java.lang.reflect.Method.invoke(Method.java:511)
05-11 16:56:26.984: E/AndroidRuntime(1037): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
05-11 16:56:26.984: E/AndroidRuntime(1037): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
05-11 16:56:26.984: E/AndroidRuntime(1037): at dalvik.system.NativeStart.main(Native Method)
05-11 16:56:26.984: E/AndroidRuntime(1037): Caused by: java.lang.reflect.InvocationTargetException
05-11 16:56:26.984: E/AndroidRuntime(1037): at java.lang.reflect.Method.invokeNative(Native Method)
05-11 16:56:26.984: E/AndroidRuntime(1037): at java.lang.reflect.Method.invoke(Method.java:511)
05-11 16:56:26.984: E/AndroidRuntime(1037): at android.view.View$1.onClick(View.java:3034)
05-11 16:56:26.984: E/AndroidRuntime(1037): ... 11 more
05-11 16:56:26.984: E/AndroidRuntime(1037): Caused by: java.lang.VerifyError: com/example/listviews2/StatusActivity$1
05-11 16:56:26.984: E/AndroidRuntime(1037): at com.example.listviews2.StatusActivity.onClick(StatusActivity.java:32)
05-11 16:56:26.984: E/AndroidRuntime(1037): ... 14 more
05-11 16:56:29.085: I/Process(1037): Sending signal. PID: 1037 SIG: 9
</b>
SuggestionRe: Having Problem to Run JTwitter.jar in Android. Pin
Prasad Khandekar16-May-13 5:18
professionalPrasad Khandekar16-May-13 5:18 
QuestionReal-time messaging application Pin
aali838-May-13 21:36
aali838-May-13 21:36 
SuggestionRe: Real-time messaging application Pin
Prasad Khandekar16-May-13 5:21
professionalPrasad Khandekar16-May-13 5:21 
NewsGame Apps Pin
jalsonia8-May-13 9:23
jalsonia8-May-13 9:23 
GeneralRe: Game Apps Pin
Abhinav S15-May-13 8:17
Abhinav S15-May-13 8:17 
GeneralRe: Game Apps Pin
jalsonia15-May-13 11:05
jalsonia15-May-13 11:05 
Question.NET Developer beginning to develop Mobile Apps which tool should I use? What do you use? Pin
Vixanna8-May-13 4:59
Vixanna8-May-13 4:59 
SuggestionRe: .NET Developer beginning to develop Mobile Apps which tool should I use? What do you use? Pin
Prasad Khandekar16-May-13 5:30
professionalPrasad Khandekar16-May-13 5:30 
QuestionSuggestions on Sensor API Pin
Nitin29057-May-13 21:07
Nitin29057-May-13 21:07 
Questionthis my friends question on android application which i am not able to solve please let help my friend Pin
Member 97729226-May-13 3:47
Member 97729226-May-13 3:47 
AnswerRe: this my friends question on android application which i am not able to solve please let help my friend Pin
0xr00t3r11-May-13 16:16
professional0xr00t3r11-May-13 16:16 
AnswerRe: this my friends question on android application which i am not able to solve please let help my friend Pin
mekalareddy13-May-13 4:37
mekalareddy13-May-13 4:37 
QuestionAndroid Orientation with Video Pin
keyur satyadev6-May-13 0:26
keyur satyadev6-May-13 0:26 
AnswerRe: Android Orientation with Video Pin
Shruti Sruchika7-May-13 0:08
Shruti Sruchika7-May-13 0:08 
GeneralRe: Android Orientation with Video Pin
keyur satyadev7-May-13 22:21
keyur satyadev7-May-13 22:21 
QuestionAndroid activity inheritance Pin
shja884-May-13 4:23
shja884-May-13 4:23 
SuggestionRe: Android activity inheritance Pin
Prasad Khandekar30-May-13 6:31
professionalPrasad Khandekar30-May-13 6:31 

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.