-1

カスタムリストビューにitemimage、itemname、price、qtyを表示する配列を取得しています。次に、価格と数量を掛けて計算される合計フィールドをもう 1 つ配置します。

私はこのコードを使用しています:

public class CustomAdapter extends BaseAdapter
  {
    integer[] a;
public static ArrayList<String> arr1=new ArrayList<String>();
public static ArrayList<String> itemprice=new ArrayList<String>();
public static ArrayList<Bitmap> itemimage=new ArrayList<Bitmap>();
public Context Context;
private LayoutInflater inflater;
String total;
    HashMap<String, String> map = new HashMap<String, String>();
    public CustomAdapter(Context context, ArrayList<String> arr,ArrayList<String> price,ArrayList<Bitmap> image) 
    {
        Context=context;
        inflater=LayoutInflater.from(context);
        arr1=arr;
        itemprice=price;
        itemimage=image;
        System.out.println(itemprice);
        System.out.println("arr: " + arr.size());

      for(int i=0;i<price.size();i++)
      {

          String amonut=price.get(i);
          int x=Integer.parseInt(amonut);

      }

    }
    public int getCount() 
    {
        // TODO Auto-generated method stub
        return arr1.size();

    }

    public Object getItem(int position) 
    {
        // TODO Auto-generated method stub
        return arr1.get(position);
    }

    public long getItemId(int position) 
    {
        // TODO Auto-generated method stub
        return position;
    }

    public View getView(int position, View convertView, ViewGroup parent) 
        {
        System.out.println(arr1.get(position));

          final  ViewHolder holder;

            if (convertView == null) 
            {
                convertView = inflater.inflate(R.layout.selecteditemlistview, null);
                holder = new ViewHolder();

                holder.textViewSelectedText = (TextView)convertView.findViewById(R.id.selectedtext);
                holder.price=(TextView)convertView.findViewById(R.id.selectitemprice);
                holder.image=(ImageView)convertView.findViewById(R.id.selectitemimagge);
                holder.qty=(EditText)convertView.findViewById(R.id.selectqty);
                holder.total=(TextView)convertView.findViewById(R.id.totalamount);
                convertView.setTag(holder);
            }
            else 
            {
                holder = (ViewHolder) convertView.getTag();
            }
            String amount=holder.qty.getText().toString();

            holder.textViewSelectedText.setText(arr1.get(position));
            holder.price.setText(itemprice.get(position));
            holder.image.setImageBitmap(itemimage.get(position));

            return convertView;     
        }

        class ViewHolder
        {
            TextView textViewSelectedText = null;
            TextView price=null;
            ImageView image=null;
            EditText qty=null;
            TextView total=null;
        }      
 }

int x と String amount を乗算し、結果をテキストとして total に割り当てたいと思います。

4

2 に答える 2

1
ans = x * Integer.parseInt(amount); or

ans = x * Double.parseDouble(amount);

total = String.valueOf(ans); 
于 2012-05-01T09:17:32.690 に答える
0

要件に応じて変数の型を変更します:-

    private float getTotal(String quantity, String price )
    {
    float total = 0f;

    try{
    float quant = Float.parseFloat(quantity);
    float unitCost= Float.parseFloat(price);

    total = unitCost*quant;


    }catch (Exception e) {

    }

    return total;
    }
于 2012-05-01T10:24:19.270 に答える