Animate each added element in the getView() method of your Custom Adapter.
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater) getActivity()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.simple_list_item_1, null);
}
ListData o = list.get(position);
TextView tt = (TextView) v.findViewById(R.id.toptext);
tt.setText(o.content);
Log.d("ListTest", "Position : "+position);
if(flag == false) {
Animation animation = AnimationUtils.loadAnimation(getActivity(), R.anim.slide_top_to_bottom);
v.startAnimation(animation);}
return v;
}
And thereby achieve the Animation.
ListView? – inazaruk Jun 7 '11 at 12:19LinearLayout. But this is only feasible if you have fairly limited number of views. If you are planning to have say 50+ items in the list, thenLinearLayoutbecomes way to expensive. – inazaruk Jun 7 '11 at 12:40LinearLayoutinstead ofListView. – inazaruk Jun 7 '11 at 14:06