Android Data
-
Hi All Once again i am asking how to send data PC to Android phone?I have search but i havn't get any ans.What i need to do
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String test="";
TextView tv = new TextView(this);
tv.setText(test);
setContentView(tv);
}
}This is my example code.I compile and run successfully and make helloandroid.apk i install through adb command. Now i want to Set the values of Srtring test from PC. Please help me
-
Hi All Once again i am asking how to send data PC to Android phone?I have search but i havn't get any ans.What i need to do
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String test="";
TextView tv = new TextView(this);
tv.setText(test);
setContentView(tv);
}
}This is my example code.I compile and run successfully and make helloandroid.apk i install through adb command. Now i want to Set the values of Srtring test from PC. Please help me
-
Hi All Once again i am asking how to send data PC to Android phone?I have search but i havn't get any ans.What i need to do
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String test="";
TextView tv = new TextView(this);
tv.setText(test);
setContentView(tv);
}
}This is my example code.I compile and run successfully and make helloandroid.apk i install through adb command. Now i want to Set the values of Srtring test from PC. Please help me
MsmVc wrote:
Once again i am asking how to send data PC to Android phone?
Please read these instructions while developing with an Android device - http://developer.android.com/guide/developing/device.html[^]
MsmVc wrote:
I have search but i havn't get any ans.What i need to do
Hope they have clearly mentioned everything you searching for.
modified on Wednesday, February 2, 2011 1:56 AM
-
MsmVc wrote:
Once again i am asking how to send data PC to Android phone?
Please read these instructions while developing with an Android device - http://developer.android.com/guide/developing/device.html[^]
MsmVc wrote:
I have search but i havn't get any ans.What i need to do
Hope they have clearly mentioned everything you searching for.
modified on Wednesday, February 2, 2011 1:56 AM