安卓:自定义列表视图,适配器表视图 [英] Android: Customize list view, Table view in adapter

查看:152
本文介绍了安卓:自定义列表视图,适配器表视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建的列表视图适配器表视图编程。对于第一个我创建了一个适配器布局:

I created a table view in list view adapter programmatically. For that first i created a Adapter layout as :

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/black"
    android:stretchColumns="*"
    android:id="@+id/tablelayout" >
</ableLayout>

然后呢我在适配器所做的是:

Then what I have done in the adapter is:

public class DemoAdapter extends ArrayAdapter<String> {
    //Global Variable declaration
    Context myContext;
    String[] key, value, loop;

    public DemoAdapter(Context context, String[] key, String[] value, String[] loop){
        super(context, R.layout.demo_screen_adapter, loop);
        this.myContext = context;
        this.key = key;
        this.value = value;
        this.loop = loop;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent){
        View row = convertView;
        if (row == null){
            // get reference to the activity
            LayoutInflater inflater = ((Activity) myContext).getLayoutInflater();
            // Inflate the custom text which will replace the default text view
            //list_item is a simple linear layout which contain textView1 in it. 
            row = inflater.inflate(R.layout.demo_screen_adapter, parent, false);
        }

        TableLayout tableLayout = (TableLayout) row.findViewById(R.id.tablelayout);
        for(int i=0; i<5; i++){
            TableRow tableRow = new TableRow(myContext);
            tableRow.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.WRAP_CONTENT));

            TextView tvKey = new TextView(myContext);
            tvKey.setText(key[(position*5)+i]);
            tvKey.setTextColor(Color.WHITE);
            tvKey.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT));
            tableRow.addView(tvKey);

            TextView tvValue = new TextView(myContext);
            tvValue.setText(value[(position*5)+i]);
            tvValue.setTextColor(Color.WHITE);
            tvValue.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT));
            tableRow.addView(tvValue);
            tableLayout.addView(tableRow, new TableLayout.LayoutParams(TableLayout.LayoutParams.MATCH_PARENT, TableLayout.LayoutParams.MATCH_PARENT));
        }
        return row;
    }
}

这是工作好。在我的每个项目有一个表视图中包含大约两列,5行。

This is working good. In my each list item there is a table view contains around two column and five rows.

现在在问题是:

我要取的点击列表项的perticular值。我不能这样做。 我的尝试是:

I want to fetch the perticular values on click of list item. I am not able to do so. What i tried as:

@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {
    Toast.makeText(this, ""+(String) arg0.getItemAtPosition(position), Toast.LENGTH_LONG).show();
}

但它显示了,我点击的位置。

But it shows the position on which i click.

我应该怎么做了,请指引我。

What should i do for that please guide me.

推荐答案

在自定义Adapter.Used持有人。

In your Custom Adapter.Used a holder.

这是我的自定义适配器

import java.util.ArrayList;

import com.samplelogin.CustomerDetails;
import com.samplelogin.R;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.TextView;

public class UserCustomAdapter extends ArrayAdapter<Customers> {
    Context context;
    int layoutResourceId;
    ArrayList<Customers> data = new ArrayList<Customers>();

    public UserCustomAdapter(Context context, int layoutResourceId,
            ArrayList<Customers> data) {
        super(context, layoutResourceId, data);
        this.layoutResourceId = layoutResourceId;
        this.context = context;
        this.data = data;
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        View row = convertView;
        UserHolder holder = null;

        if (row == null) {
            LayoutInflater inflater = ((Activity) context).getLayoutInflater();
            row = inflater.inflate(layoutResourceId, parent, false);
            holder = new UserHolder();
            holder.textName = (TextView) row.findViewById(R.id.textView1);
            holder.textAddress = (TextView) row.findViewById(R.id.textView2);
            holder.textLocation = (TextView) row.findViewById(R.id.textView3);
            holder.btnEdit = (Button) row.findViewById(R.id.button1);

            row.setTag(holder);
        } else {
            holder = (UserHolder) row.getTag();
        }
        Customers user = data.get(position);        
        holder.textName.setText(user.getName());
        holder.textAddress.setText(user.getAddress());
        holder.textLocation.setText("");

        holder.btnEdit.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                Customers user = data.get(position);
                user.setTID(user.getID());
                user.setTName(user.getName());
                user.setTAddress(user.getAddress());
                user.setTTelNo(user.getTelNo());
                user.setTMobileNo(user.getMobileNo());
                user.setTFaxNo(user.getFaxNo());

                Intent intent = new Intent(context, CustomerDetails.class);
                context.startActivity(intent);
            }
        });
        return row;

    }

    static class UserHolder {
        TextView textName;
        TextView textAddress;
        TextView textLocation;
        Button btnEdit;
        Button btnDelete;
    }

}

和我的活动。我把资料上它是:

And in my activity. I put data on it by:

声明你的变量

 // Customer
   ListView CustomerList;
    UserCustomAdapter CustomerAdapter;
    ArrayList<Customers> CustomerArray = new ArrayList<Customers>();
    Button addCustomer;

将填满一个数据你的价值。

Put fill up your value with a data.

        // Customer Tab
cdb = new CustomerDB(getApplicationContext());
int custcount = cdb.getCustomerCount();
if (custcount > 0) {
    List<Customers> cdbL = cdb.getAllCustomers();
    int listSize = cdbL.size();

    for (int i = 0; i < listSize; i++) {

        CustomerArray.add(new Customers(cdbL.get(i).getDBName()
                .toString(), cdbL.get(i).getDBAddress().toString(),
                cdbL.get(i).getDBTelNo().toString(), cdbL.get(i)
                        .getDBMobileNo().toString(), cdbL.get(i)
                        .getDBFaxNo().toString(), cdbL.get(i).getDBID()
                        .toString()));
    }
}

现在,从你的清单。数据传送你到你的自定义适配器

Now, from your list. transfer you data to your custom adapter

// set item into adapter
CustomerAdapter = new UserCustomAdapter(MainMaintenance.this,
        R.layout.maintenancetab, CustomerArray);
CustomerList = (ListView) findViewById(R.id.lvCustomer);
CustomerList.setItemsCanFocus(false);
CustomerList.setAdapter(CustomerAdapter);

在这里,你可以点击该项目,并做你想做的。在此示例中,我通过我的数据在一个公共类列表,然后我去到下一个活动。

Here, you can click the item and do what you want. in this sample, i pass my data in a list in a public class and then i go to the next activity.

    // get on item click listener
CustomerList.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
            long arg3) {
        // TODO Auto-generated method stub
        Customers user = CustomerArray.get(arg2);
        user.setTID(user.getID());
        user.setTName(user.getName());
        user.setTAddress(user.getAddress());
        user.setTTelNo(user.getTelNo());
        user.setTMobileNo(user.getMobileNo());
        user.setTFaxNo(user.getFaxNo());

        Intent intent = new Intent(MainMaintenance.this,
                CustomerDetails.class);
        startActivity(intent);
    }
});

在自定义适配器setOnClickListener是,如果你把一个按钮,在您自定义适配器:)如果你会被迷惑只是告诉我:)

The setOnClickListener in your custom adapter is if you will put a button in you custom adapter :) if youll be confuse just tell me :)

我希望这样品code会给你一个想法,并帮助你。

I hope that this sample code will give you an idea and help you.

这篇关于安卓:自定义列表视图,适配器表视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆