Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom ViewPager

How can i create a customized ViewPager ? To instantiate a page in the ViewPager it's something like this :

public Object instantiateItem(View collection, int position) {
    TextView tv = new TextView(cxt);
    tv.setText("Bonjour PAUG " + position);
    tv.setTextColor(Color.WHITE);
    tv.setTextSize(30);

    ((ViewPager) collection).addView(tv,0);

    return tv;
}

is there a way to inflate like this in a Class extended from an Adapter :

public View getView(int position, View convertView, ViewGroup parent) {
    View v = convertView;
    if (v == null) {
        LayoutInflater vi = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = vi.inflate(R.layout.the_layout, null);
    }
    CustomView cv = items.get(position);
    if (cv != null) {
            TextView text = (TextView) v.findViewById(R.id.text);
            if (text != null) {
                  ticker.setText(cv.getText()); 
            }
like image 807
Tsunaze Avatar asked Jun 27 '26 04:06

Tsunaze


1 Answers

This is a mere example, but it's working quiete well.

public Object instantiateItem(View collection, int position) {
        LayoutInflater inflater = (LayoutInflater)cxt.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View layout = inflater.inflate(R.layout.search_result, null);
        //
        TextView title = (TextView)layout.findViewById(R.id.search_result_title);
        TextView body = (TextView)layout.findViewById(R.id.search_result_body);
        TextView byline = (TextView)layout.findViewById(R.id.search_result_byline);
        TextView day = (TextView)layout.findViewById(R.id.search_result_date_day);
        TextView month = (TextView)layout.findViewById(R.id.search_result_date_month);
        TextView year = (TextView)layout.findViewById(R.id.search_result_date_year);
        //
        title.setText(list_title.get(position).toString());
        body.setText(list_body.get(position).toString());
        day.setText(list_day.get(position).toString());
        month.setText(list_month.get(position).toString());
        year.setText(list_year.get(position).toString());
        byline.setText(list_byline.get(position).toString());
        //
        ((ViewPager) collection).addView(layout,0);
        return layout;
    }
like image 186
Tsunaze Avatar answered Jun 28 '26 17:06

Tsunaze