Different components in different rows of an Android ListView

536 Views Asked by At

I am new to Android. I would like to create an Activity very similar to "Add event" part of Android Calendar app. To me it looks like a ListView with different components in each row. I could be wrong. If I am right, I still don't know how to add different components to each row of a ListView, e.g., EditText in one row, TextView in another row, etc. If this app is not ListView at all, if anybody can tell me how I can create something similar, I'd appreciate that a lot.

2

There are 2 best solutions below

0
On

hello check this link it be helpful 1

listView with different component

0
On

First you have to learn how to implement a custom Adapter (see this tutorial: http://www.vogella.com/tutorials/AndroidListView/article.html#adapterown)

Then in your getView overriden method (you'll learn about it in the tutorial) you have to do something like this:

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View rowView = null;
    if (position == LAYOUT1_POSITION) //In this row you will place the layout named layout1
        rowView = inflater.inflate(R.layout.rowLayout1, parent, false);
    if (position == LAYOUT2_POSITION)
        rowView = inflater.inflate(R.layout.rowLayout2, parent, false);
    //Do similar for all your different layouts

    return rowView;
}