Maybe get a decent book about it for a decent overview? Hello, Android is an easy head in first book for example that covers most the basic stuff. What kind of things you intend to do?
I've just done the Hello, Android tutorial weirdly enough. Successfully too!
I'm going to look to design individual apps for website needs. For example, if GOT needed a decent phone forum app, I'd do that.
I'll have a look at that Hello, Android book - exactly the sort of suggestion I was after. Thanks!
DO EET!!
And as close to PC mode as it can be, please.
PLEASE.
If I remember correctly hello android features a sudoku tutorial.
Unless you are trying to complete that?
public class Prefs extends PreferenceActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
[B]addPreferencesFromResource(R.xml.settings);[/B]
}
}
Yes, but it's archaic unfortunately (android 2.1 based for the most) and some of the terms are deprecated, causing many issues.
It's a good book but it isn't teaching me much other than to copy and paste code in and hope for the best that I identify what the hell everything is doing!
Currently messing about with the Rich UI and learning more by trial and error (adding buttons etc. then reading the XML to identify what happened "under the hood") but I'm struggling to "tie it all together" right now.
I guess I should mention I have absolutely no background in Java and haven't actively designed anything higher than basic HTML in a good five yearsBut I'm bright, so I'd be annoyed if I didn't pick this up fairly quickly. Just need a poke in the right direction.