Re: CTS APK'S QUERIES
Any help on how to test apk's generated by compiling cts tests on emulator or target ?? Thanks : Uander
Informacja: 2010-03-17
Czytaj: Re: CTS APK'S QUERIES
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: 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
Re: [android-beginners] using java classes
That was it! I really hate it when it is such a glaringly obvious error, yet you cannot see it. Oh well, that is not the first time and I am sure it will not be the last...
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] using java classes
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: 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] 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?
Re: Prevent uninstallation of app?
In theory... how many users use a single cell phone? Even if I let someone else use my phone, I don't have a way to let my phone know that it should currently be in "different-user-mode". If the user has downloaded a tool ti help with keeping the programs in order, and that program uninstalls your program, isn't that the same
Informacja: 2010-03-17
Czytaj: Re: Prevent uninstallation of app?
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] 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
Re: [android-beginners] Re: very basic question about 2d graphics
Agree.. photos in general (and videos, and even audio) always look as good when scaled down proportionately. At least that is my experience. Scaling up requires time consuming steps to make it look better and in real time games, you'd want to preserve all cycles for the game loop and not scaling graphics. I believe it can be done with Android tho.
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] Re: very basic question about 2d graphics