| Author |
Message |
plusminus Site Admin


Joined: 14 Nov 2007 Posts: 2439 Location: College Park, MD
|
|
| Back to top |
|
 |
fresco Junior Developer

Joined: 18 Nov 2007 Posts: 24
|
Posted: Wed Nov 21, 2007 12:35 am Post subject: Request Tutorials Here ! |
|
|
May be somebody knows where can I find example of creating tabbed window view by using TabHost class ?
[Edit by plusminus]
Rejected
Reason: TabHost is deprectated and will be removed from the SDK soon!
Re-Request it after that...! |
|
| Back to top |
|
 |
ramvi Freshman

Joined: 17 Nov 2007 Posts: 2
|
Posted: Wed Nov 21, 2007 2:52 am Post subject: |
|
|
I've studied C++ for a year, but have programmed in PHP for a long time. Java (or any other programming language) isn't too far from the C++ / PHP structure. As a PHP programmer I've been spoiled with php.net. I would like to see a tutorial in "How to get help yourself learning java / android". "This URL is a great place for finding functions" etc
What java snippets you find on the web will work in android? None, because most of them are in JavaEE and Android uses Dalvik?
[Edit by plusminus]
"Rejected"
Reason: Mostly all Java-Codes will work in Android as you are coding 'normal' Java , except the GUI-Widget-Stuff and the specialized Android-Stuff. (You are going to learn both here)
For learning some specialties take a look at the following URIs.
It's an really nice interactive multiple-choice quiz, which I read to learn from for my programming cours-tests.
http://chortle.ccsu.edu/CS151/cs151java.html
For learning Android itself from the base, stay tuned to this forum  |
|
| Back to top |
|
 |
atr Junior Developer

Joined: 19 Nov 2007 Posts: 14 Location: Singapore
|
Posted: Wed Nov 21, 2007 6:13 am Post subject: |
|
|
Tutorials about all the GUI widgets would be really useful, like Eclipse - SWT or Java2s
[Edit by plusminus]
Semi-Accepted
Reason: The widgets will be used in all the Tutorials from time to time. If you have a special need/interest, let us know.
i.e.: You'll find a tutorial that uses drawing overlays on a MapView in the late evening hours (Latest tomorrow) |
|
| Back to top |
|
 |
fresco Junior Developer

Joined: 18 Nov 2007 Posts: 24
|
Posted: Wed Nov 21, 2007 11:38 am Post subject: |
|
|
Tutorial for working with files would be nice. Create new file, read, write operations and so on.
[Edit by plusminus]
Accepted
Reason: Not seen explicitly somewhere else.
[Edit by plusminus]
DONE
See Tutorial: here |
|
| Back to top |
|
 |
atr Junior Developer

Joined: 19 Nov 2007 Posts: 14 Location: Singapore
|
Posted: Thu Nov 22, 2007 5:40 am Post subject: |
|
|
Hi all,
I was thinking about image/pictures? Never seen any tutorial about it. Thanks!
[Edit by plusminus]
Accepted (refine please)
Reason: What exactly are you thinking of? (the Gallery /ImageView ...?) |
|
| Back to top |
|
 |
deimos Freshman

Joined: 22 Nov 2007 Posts: 3
|
Posted: Thu Nov 22, 2007 1:32 pm Post subject: |
|
|
I'd like to see a working tutorial on streaming music with the media player from a url if anyone knows one.
Thanks,
_D
[Edit by plusminus]
Accepted (refine pls)
Reason: You mean like listening to a radio-stream or sth?
An MPEG audio stream would be cool, but I was thinking just a simple example, streaming a mp3 from a url.
Last edited by deimos on Sun Nov 25, 2007 11:40 pm; edited 1 time in total |
|
| Back to top |
|
 |
atr Junior Developer

Joined: 19 Nov 2007 Posts: 14 Location: Singapore
|
Posted: Thu Nov 22, 2007 1:48 pm Post subject: |
|
|
| atr wrote: | Hi all,
I was thinking about image/pictures? Never seen any tutorial about it. Thanks!
[Edit by plusminus]
Accepted (refine please)
Reason: What exactly are you thinking of? (the Gallery /ImageView ...?) |
Yeah, some kind of simple gallery, or list of names, then if you click it, it displays a picture. Thanks +/-
[Edit by plusminus]
Accepted |
|
| Back to top |
|
 |
rtreffer Junior Developer

Joined: 23 Nov 2007 Posts: 15
|
Posted: Sat Nov 24, 2007 9:25 pm Post subject: Tools/Emulator tutorial |
|
|
- The emulator provides some interresting parameters, e.g. -qemu -m <memory>, -qemu -net <networking>
- "toolbox" (the android busybox) provides an interface to work inside your android emulator (e.g. check network interfaces, memory consumption, processes, ...)
- adb allows easy installation and some basic introspection into the platform
- ant/activityBuilder can be a great help to compile/deploy applications from the command line
It is quite usefull to optimize/streamline your own development concept. Learning/understanding the tools is a key part. (plus well have to work with the emulator for up to 6 months - no devices, just emulators). _________________ root@localhost# : ( ) { : | : & } ; : |
|
| Back to top |
|
 |
Dachhel Once Poster

Joined: 24 Nov 2007 Posts: 1
|
Posted: Sun Nov 25, 2007 9:48 am Post subject: |
|
|
| It would be nice to have a basic example which uses XMPP for interaction between several mobile phones. If someone knew a good link where I can learn about using XMPP, I would be glad too. |
|
| Back to top |
|
 |
XterierK Freshman

Joined: 26 Nov 2007 Posts: 4
|
Posted: Mon Nov 26, 2007 7:44 am Post subject: |
|
|
Hi,
I was thinking of changing the loading up screen from that red ball moving back and forth to something more graphical like something that takes up the whole screen. _________________ Limited Imagination = Impossible! |
|
| Back to top |
|
 |
Spoogle Freshman

Joined: 26 Nov 2007 Posts: 5
|
Posted: Mon Nov 26, 2007 3:55 pm Post subject: Intents in the Manifest |
|
|
Hey - recently posted this to the 'Beginner's' Google Group, but this may be a better place (thanks for making this, by the way!!)
I've been having trouble understanding how the intents system works in the Manifest, along with how file-types and locations on the filesystem are articulated in the code. Part of the confusion is that a lot of Google's example code assumes an app made by Google, so they use their namespace in the tutorials. But the entire framework was made by Google, so I have no idea when to replace 'google' with 'my_app_name', or how any of the lengthy this.that.that.other.... domains get formed.
Some of the many, many questions I was left with from their 'Intents' documentation (http://code.google.com/android/reference/android/content/Intent.html):
1) vnd.android.cursor.item/vnd.google.note is referred to as a file-type for the note application in intents-lingo. I have no idea what makes that a file-type, what items to replace in my own apps with what else (would a notes app called BonzaNotes use something like 'vnd.android.cursor.item/vnd.bonzanote.note', for instance? What does 'vnd' mean, or 'android.cursor.item'?) It would be really helpful to take that apart and explain what each component means.
2) In the line "<action android:value="com.google.android.notepad.action.EDIT_TITLE" />"... Again, what does 'com' stand for? Do I replace 'google' or 'android' in my own apps? How did they come up with that exact string of items?
How do I?
3) In the following lines, what do 'DEFAULT', 'ALTERNATIVE', and 'SELECTED_ALTERNATIVE' mean? These seem like really ambiguous (to the point of useless) categories for much of anything, but they seem to be
important in how the system works.
| XML: | <category android:value="android.intent.category.DEFAULT" />
<category android:value="android.intent.category.ALTERNATIVE" />
<category android:value="android.intent.category.SELECTED_ALTERNATIVE" />
|
It feels like there's a bit of a jump from the beginner-friendly tutorial to the hard-core programmer documentation, which is understandable - it's not Google job to teach us how to code. But a pointer on understanding some of this would be really helpful.
Thanks for any advice or tutorials anyone can provide. |
|
| Back to top |
|
 |
bibiodp Junior Developer

Joined: 26 Nov 2007 Posts: 12
|
Posted: Mon Nov 26, 2007 6:25 pm Post subject: |
|
|
Hi,
First, i'd like to support the previous request but in a more "general" way : a system global message handler tutorial, to learn how to handle system calls/messages such as time_tick, call_action, answer action... I'm trying to make my "incomingPhoneCallHandler" for many days but it doesn't work out and i'm out of solution
I'd also like a tuto about the emulator just to know what is implemented or not and how to receive a call i.e.
I hope you'll understand me (french developper inside ).
[Edit by plusminus]
Semi-Accepted
[Edit by plusminus]
DONE
See Tutorial: PhoneStateIntentReveiver here
Replacing the DIAL-Action here |
|
| Back to top |
|
 |
afrausin Once Poster

Joined: 26 Nov 2007 Posts: 1
|
Posted: Mon Nov 26, 2007 11:52 pm Post subject: |
|
|
Would it be possible to have tutorial showing how to create a program that connects, adds and edits data to a SQL database?
Thank you very much,
Augusto
ps. great site!
[Edit by plusminus]
Accepted
Reason: Everyone need such stuff  |
|
| Back to top |
|
 |
johnny Freshman

Joined: 27 Nov 2007 Posts: 3
|
Posted: Tue Nov 27, 2007 11:51 pm Post subject: |
|
|
First post - better be something usefull:
How about a Tutorial about a online lookup to xml, rss whateveryouwant to retrieve data?
Something like a RSS Feed Reader...not very special but just the way of getting the information would be worth the effort, I think.
Never come close to really develop anything in java, but i like google, i like android and i once made a network ping pong for java (yeah, thx, I know I'm the big cheese).
I have more ideas my head but skills to write code - but I'm going to learn it!!
Would be nice if the tutorial could be written, or maybe just a hint to another readme, howto, faq on how to make internet lookups etc.
THX!!!
KEEP up your work +-, I like it a lot! |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
© 2007, Android Development Community
All rights reserved.
Powered by phpBB.
|