Reputation: 71
Would anyone be able to point me in the right direction on making a custom 100 word dictionary app?
Here is the app design I had in mind.
I looked at the Dev Guide section but I am a little confused as to all the parts needed.
Upvotes: 5
Views: 7273
Reputation: 789
The link given by Craigy doesn't work anymore, however there is a new one on the official website here, I think it is pretty thorough. Hope it helps!
Upvotes: 1
Reputation: 76899
Hope this gets you started:
Splash screen, see here: http://blogactivity.wordpress.com/2012/02/24/writing-splash-screens-the-right-way/
Dictionary part, take a look at the example in the development kit, as @Craigy suggests.
Having different kinds of rows in a list (to create your definition/capital letter layout) can be accomplished by overriding getItemViewType()
and getItemViewTypeCount()
in a custom adapter, and plugging that to a ListView
. You can find examples if you google around, and there's always the docs: http://developer.android.com/reference/android/widget/BaseAdapter.html#getItemViewType(int)
Upvotes: 2