Re: [android-beginners] Email Accounts
The email applications are not part of the official SDK.
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] Email Accounts
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] mapview: what might cause the google logo to show up as a red box?
It is a Cliq problem and there does not seem to be anything you can do about it. Here's another forum on the topic: [link] <[link]> ------------------------------ ------------------------------ ------------------------------ -------
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] mapview: what might cause the google logo to show up as a red box?
Re: [android-beginners] Put multiple lines of images
LinearLayout is only one direction... everything shows up in a linear order, either horizontally or vertically. ------------------------------ ------------------------------ ---------- There are only 10 types of people in the world... Those who know binary and those who don't. ------------------------------ ------------------------------ ----------
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] Put multiple lines of images
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: [android-beginners] Re: possible to send an xml file via HttpClient?
You probably want to look at HttpPost or HttpPut, which implement HttpRequest, which is an available parameter to the execute() method in the HttpClient interface. Not 100% sure what you're trying to do, but that's the path of investigation I'd suggest. - Chris
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] Re: possible to send an xml file via HttpClient?
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
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: [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: [android-beginners] What will happen to my activity incase of incoming phone call
The exact same thing that will happen if any other app is started over your app. [link] Android will save the state of any views (like the text in a TextView or EditText). You're responsible for saving anything else you need.
Informacja: 2010-03-17
Czytaj: Re: [android-beginners] What will happen to my activity incase of incoming phone call
using java classes
Hi all, As an exercise, I am trying to add a date field to the database in notepadv2 (the tutorial), and methods to sort or reverse sort notes by date modified. However, I am not getting anywhere after trying to add the Date and DateFormat objects to my application. I have imported java.util.* and java.text.DateFormat, but I get an error that, for
Informacja: 2010-03-17
Czytaj: using java classes