I'm fairly new to designing UIs in Android (And fairly new to Android development as well). I'm currently developing an Android application that looks a lot like Google+'s "All Circles" page, and Facebook's user home, where you get to see contents shared by your friends.
To make things clearer, please take a look at the following screenshot that's taken from Google+'s Android application:
As you can see, Paul Harper's post is in a little Frame, and "Android and me"'s post is in another. And the more you scroll downwards, the more shared stuff you'll see, each in its own "Frame".
I'm really not sure how to achieve this result(I'm sure that it involves a ListView component), so could anyone please tell me about the UI components that I should be using to do it?
Thanks a ton.
You should have a look at the video in the link.
http://www.youtube.com/watch?v=wDBM6wVEO70
private static final int TYPE_ITEM1 = 0;
private static final int TYPE_ITEM2 = 1;
private static final int TYPE_ITEM3 = 2;
int type;
@Override
public int getItemViewType(int position) {
if (position== 0){
type = TYPE_ITEM1;
} else if (position == 1){
type = TYPE_ITEM2;
}
return type;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
LayoutInflater inflater = null;
int type = getItemViewType(position);
if (row == null) {
if (type == TYPE_ITEM1) {
//infalte layout of type1
}
if (type == TYPE_ITEM2) {
//infalte layout of type2
} else {
//infalte layout of normaltype
}
}
You are right. For lists, the keywords you need to look for are "ListView", "ListFragment", "ListActivity". To give your list (items) a custom look, you need to define your own layout for the list rows, which then can contain multiple subviews. To fill your rows (and their subviews) with content you need to define a custom adapter which you set on the list. Look for (e.g.) "ArrayAdapter", "SimpleCursorAdapter".
Try a google search for "android list custom layout" and "android list adapter".
Best regards, Sebastian
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With