Re: [android-beginners] To delete a file in the SD card, but what to do?
File f = new File(filePath); f.delete(); BR, Adrian Vintu [link]
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] To delete a file in the SD card, but what to do?
About android.permission.INJECT_EVENTS
Hi All, I refer to [link] and find "android.permission.INJECT_EVE NTS" as below description. ------------------------------ ------------------------------ ------------------------------ ---------------------------- Allows an application to inject user events (keys, touch, trackball)
Informacja: 2010-03-17
Czytaj: About android.permission.INJECT_EVENTS
How to know the size of a file in adb shell prompt
*Hello all, i want to extract the size of a file in adb shell using some perl utility. this works fine for me as below in windows but does not work in adb shell prompt (#) i used this function in windows stat($filename); can anybody please let me know how can i get file size in #prompt? regds rocky *
Informacja: 2010-03-17
Czytaj: How to know the size of a file in adb shell prompt
Re: How to use built in email application to send email from my application
Hi Satish Check this working for me: public void launchEmailActivity(){ final Intent emailIntent = new Intent(android.content.Intent. ACTION_SEND); emailIntent .setType("plain/text"); emailIntent .putExtra(android.content.Inte nt.EXTRA_EMAIL, new String[]{""}); emailIntent .putExtra(android.content.Inte nt.EXTRA_SUBJECT, "Test
Informacja: 2010-03-17
Czytaj: Re: How to use built in email application to send email from my application
Re: Serial Data Transfer via Bluetooth
Look at the Bluetooth Chat example and change the UUID to "00001101-0000-1000-8000-00805 F9B34FB". That should get you going.
Informacja: 2010-03-17
Czytaj: Re: Serial Data Transfer via Bluetooth
how to implement facebook login integration with my android app ???
hello experts ! I have posted this problem twice previously and doing it once again. kinldy help me out if any1 has been successful implementing facebok login facility in its app. I tried with fb- connect api but its not working on my end .. just stuck !! :S regards, wahib
Informacja: 2010-03-17
Czytaj: how to implement facebook login integration with my android app ???
Re: What will happen to my activity incase of incoming phone call
When a call comes in, you'r activity will call onPause() when the call ends, it will call onResume(). You can test this in the emulator as well. -Kitzy
Informacja: 2010-03-17
Czytaj: Re: What will happen to my activity incase of incoming phone call
Re: What am I missing? arrays.xml help
What does you errorlog file say? It's the best and fastest way to find a problem. -Kitzy
Informacja: 2010-03-17
Czytaj: Re: What am I missing? arrays.xml help
Re: [android-beginners] Re: Alignment problem of EditText and Button in LinearLayout
Also adding layout_gravity to the button could help.
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] Re: Alignment problem of EditText and Button in LinearLayout
Re: Alignment problem of EditText and Button in LinearLayout
I'm not 100% sure on your problem, but you could simplify thing emenssly by using a RelativeLayout, and that may help you problem at the same time. See: [link] -Kitzy
Informacja: 2010-03-17
Czytaj: Re: Alignment problem of EditText and Button in LinearLayout
Re: [android-beginners] how to use a Cancel button to clear data in an edittext
EditText editText = (EditText) findViewById(R.id.EditText01); editText.setText(""); BR, Adrian Vintu [link]
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] how to use a Cancel button to clear data in an edittext