- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 ListView (多个微调器)中为不同的产品实现微调器,其图像在左侧,价格在右侧。用户可以选择每种产品的数量(数量)。
根据我的需要,这项工作在一个从 BaseAdapter 扩展的类中进行。在微调器的 getView 中,我设置了微调器 View 。
现在我想要:
1) 当用户在 Spinner 中选择一个项目时,该项目的价格计算为总价,右侧的 TextView 文本设置为该总价。现在它运行良好,但是当我向上滚动列表时,Spinner 将其值更改为旧值(即位置 0 处的值)而不是新值。
2) 我想做的另一件事是将来自不同微调器的所有这些值保存在一个数组中,以便最后将所有不同微调器的值进一步计算为总计(在首先,我计算了单个产品的值(value),假设该产品的价格是 50 美元,用户选择了他想要 20 件该产品,所以 totall=20x50)。
3) 我想要的另一件事是获取在一个微调器中选择的项目数。并以同样的方式将每个微调器的这些数字保存在另一个数组中,以便最后将这些都计算为所有产品的总数。
下面是图片,很抱歉我的问题太长了,但我真的很想解决这个问题。如果您希望我发布更多内容,请告诉我。
当我选择项目时
当我滚动屏幕时,微调器中的所有值和 TextView 中的价格都重置为初始位置
这是我的代码
public class Base_Adapter extends BaseAdapter
{
ImageView image;
TextView name, price;
Context context ;
ArrayList<ItemDetails> IDetails; //The item class which have methods and fields
RelativeLayout R_Layout;
Activity activit;
public Base_Adapter(Context context , ArrayList<ItemDetails> li)
{
this.context = context;
IDetails = li;
}
public void setLayout(Activity activity, RelativeLayout layout){
R_Layout = layout;
this.activit = activity;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return IDetails.size();
}
@Override
public Object getItem(int arg0) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
//////// Get View For Spinner////
@Override
public View getView(final int position, View CV, ViewGroup parent) {
// TODO Auto-generated method stub
LayoutInflater infleter = (LayoutInflater) this.context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if(CV == null)
{
CV = infleter.inflate(R.layout.base_adapter, null);
}
final ItemDetails item = IDetails.get(position);
int min =1;
int max = Integer.parseInt(item.totall_Available());
ArrayList<String> A_list= new ArrayList<String>();
for(int i=1;i<=max;i++)
{
A_list.add("Number of Items :"+i);
}
image = (ImageView) CV.findViewById(R.id.Item_image);
name = (TextView) CV.findViewById(R.id.item_name);
price = (TextView) CV.findViewById(R.id.item_price);
final Spinner quantity = (Spinner) CV.findViewById(R.id.items);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(context, R.layout.spinner_textview, A_list);
quantity.setAdapter(adapter);
//String selectedItem = (String) quantity.getSelectedItem();
name.setText(item.name());
/// ItemClick/////
quantity.setOnItemSelectedListener(new OnItemSelectedListener()
{
public void onItemSelected(AdapterView<?> arg0, View arg1, int i, long arg3)
{
if(i>0){
float cal=Float.parseFloat(item.Fisrtprise());
float cal3=cal*i;
price.setText(""+String.format("%.2f", cal3).replace(".", ","));
String s = Float.toString(cal3);
item.Totalprice=s;
}
else{
price.setText(""+String.format("%.2f", Float.parseFloat(item.Fisrtprise())).replace(".", ","));
}
}
public void onNothingSelected(AdapterView<?> arg0){
}
});
return CV;
}
这是 IDetails 类
@SuppressWarnings("serial")
public class IDetails implements Serializable
{
ContentValues colmnValues;
private int no_of_items;
public float Totalprice;
public IDetails(ContentValues values )
{
colmnValues = values;
}
public String title() {
return getValue(colmnValues.get("title"));
}
public void setNo_of_items(int no_of_items) {
this.no_of_items = no_of_items;
}
public int getNo_of_items() {
return no_of_items;
}
public void setTotalprice(float Totalprice) {
this.Totalprice = Totalprice;
}
public float getTotalprice() {
return Totalprice;
}
public String imageUrl() {
return getValue(colmnValues.get("imageUrl"));
}
public String pprice() {
return getValue(colmnValues.get("Realprice"));
}
public String stock() {
return getValue(colmnValues.get("stock"));
}
private String getValue(Object obj){
if(obj == null){
return "";
}
return (String) obj;
}
}
最佳答案
我只是更新了你的代码,没有创建新的。首先我会回答这三个问题。
getView()
方法,它们再次初始化为默认值。为了避免这种情况并取回您之前选择的值,您所要做的就是将它们保存在 map 中并分配回来。在以下代码“selectedItem
”是我用来存储选定金额的 map 对于每个微调器。totalPrices
”。在 onItemSelected()
中,我们可以放入总计特定微调器的数量。在“BUY
”的 onclick() 方法中按钮,您可以通过调用 getTotalPrice()
方法访问此 map 是适配器类。selectedItem
” map 微调器的选定值。与总价相同,您可以获得此 map 使用 getTotalItems()
。此外,在 onItemSelected()
方法中的价格计算中,您使用了“i
”来乘以商品价格。它应该是 (i+1)
。因为“i”是列表在微调器中的位置。它从 0
开始。
这是 Base_Adapter 类
public class Base_Adapter extends BaseAdapter{
ImageView image;
TextView name, price;
private HashMap<Integer,Integer> selectedItem=new HashMap<Integer, Integer>();
private HashMap<Integer, String> totalPrices=new HashMap<Integer, String>();
Context context ;
ArrayList<ItemDetails> IDetails; //The item class which have methods and fields
RelativeLayout R_Layout;
Activity activit;
public Base_Adapter(Context context , ArrayList<ItemDetails> li) {
// TODO Auto-generated constructor stub
this.context = context;
IDetails = li;
}
public void setLayout(Activity activity, RelativeLayout layout){
R_Layout = layout;
this.activit = activity;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return IDetails.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
public HashMap<Integer,Integer> getTotalItems(){
return selectedItem;
}
public HashMap<Integer, String> getTotalPrice(){
return totalPrices;
}
//////// Get View For Spinner////
@Override
public View getView(final int position, View CV, ViewGroup parent) {
// TODO Auto-generated method stub
final ItemDetails item = IDetails.get(position);
int min =1;
int max = Integer.parseInt(item.stock());
LayoutInflater inflater=(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView=inflater.inflate(R.layout.base_adapter, parent,false);
ArrayList<String> A_list= new ArrayList<String>();
for(int i=1;i<=max;i++)
{
A_list.add("Number of Items :"+i);
}
ImageView image=(ImageView) rowView.findViewById(R.id.item_image);
TextView nameTextView=(TextView) rowView.findViewById(R.id.item_name);
nameTextView.setText(item.title());
final TextView price=(TextView) rowView.findViewById(R.id.item_price);
Spinner quantity=(Spinner) rowView.findViewById(R.id.items);
ArrayAdapter<String > quatity=new ArrayAdapter<String>(context, R.layout.spinner_textview, R.id.item_list, A_list);
quantity.setAdapter(quatity);
if(selectedItem.get(position) != null){
//This should call after setAdapter
quantity.setSelection(selectedItem.get(position));
}
quantity.setOnItemSelectedListener(new OnItemSelectedListener()
{
public void onItemSelected(AdapterView<?> arg0, View arg1, int i, long arg3)
{
if(i>0){
selectedItem.put(position, i);
i=i+1;
float cal=Float.parseFloat(item.price());
float cal3=cal*i;
price.setText(""+String.format("%.2f", cal3).replace(".", ","));
item.Totalprice= cal3;
}
else{
price.setText(""+String.format("%.2f", Float.parseFloat(item.price())).replace(".", ","));
}
totalPrices.put(position, price.getText().toString());
}
public void onNothingSelected(AdapterView<?> arg0){
}
});
return rowView;
}
}
因此在您的 Activity 类中为“BUY
”按钮实现onclick
方法。
public void getTotal(View view){
HashMap<Integer, Integer>totalItems=adapter.getTotalItems();
HashMap<Integer, String> totalPrices=adapter.getTotalPrice();
for(int i=0;i<totalItems.size();i++){
if(totalItems.get(i) != null){
System.out.println("Spinner No"+(i+1)+"Items :"+(totalItems.get(i)+1));
System.out.println("Spinner No "+(i+1)+"total price "+totalPrices.get(i));
}else{
System.out.println("Spinner No"+(i+1)+"Items : 1");
}
}
关于android - 如何获取多个Spinner View中的Item数量并计算总价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21709115/
SQL 和一般开发的新手,我有一个表(COUNTRIES),其中包含字段(INDEX、NAME、POPULATION、AREA) 通常我添加一个客户端(Delphi)计算字段(DENSITY)和 On
我想使用 calc(100%-100px),但在我的 demo 中不起作用由于高度只接受像素,因此如何将此百分比值转换为像素。 最佳答案 以下将为您提供高度: $(window).height();
我正在尝试在 MySQL 中添加列并动态填充其他列。 例如我有一张表“数字”并具有第 1 列、第 2 列、第 3 列,这些总数应填充在第 4 列中 最佳答案 除非我误解了你的问题,否则你不只是在寻找:
我想返回简单计算的结果,但我不确定如何执行此操作。我的表格如下: SELECT COUNT(fb.engineer_id) AS `total_feedback`, SUM(fb.ra
我一直在尝试做这个程序,但我被卡住了,我仍然是一个初学者,任何帮助将不胜感激。我需要程序来做 打印一个 10 X 10 的表格,其中表格中的每个条目都是行号和列号的总和 包含一个累加器,用于计算所有表
这个计算背后一定有一些逻辑。但我无法得到它。普通数学不会导致这种行为。谁能帮我解释一下原因 printf ("float %f\n", 2/7 * 100.0); 结果打印 1.000000 为什么会
我想计算从 0 到 (n)^{1/2} - 1 的数字的 AND每个数字从 0 到 (n)^{1/2} - 1 .我想在 O(n) 中执行此操作时间,不能使用 XOR、OR、AND 运算。 具体来说,
如何在 Excel 中将公式放入自定义数字格式?例如(出于说明目的随机示例), 假设我有以下数据: 输入 输出 在不编辑单元格中的实际数据的情况下,我想显示单元格中的值除以 2,并保留两位小数: 有没
每次我在 Flutter 应用程序中调用计算()时,我都会看到内存泄漏,据我所知,这基本上只是一种生成隔离的便捷方法。我的应用程序内存占用增加并且在 GC 之后永远不会减少。 我已将我的代码简化为仅调
我有数字特征观察 V1通过 V12用于目标变量 Wavelength .我想计算 Vx 之间的 RMSE列。数据格式如下。 每个变量“Vx”以 5 分钟的间隔进行测量。我想计算所有 Vx 变量的观测值
我正在寻找一种使用 C 语言计算文件中未知字符数的简单方法。谢谢你的帮助 最佳答案 POSIX 方式(可能是您想要的方式): off_t get_file_length( FILE *file ) {
我正在使用 Postgres,并且我正试图围绕如何在连续日期跨度中得出第一个开始日期的问题进行思考。例如 :- ID | Start Date | End Date =================
我有一个订单表格,我在其中使用 jQuery 计算插件来汇总总数。 此求和工作正常,但生成的“总和”存在问题。总之,我希望用逗号替换任何点。 代码的基础是; function ($this) {
我在使用 double 变量计算简单算术方程时遇到问题。 我有一个具有 double 属性 Value 的组件,我将此属性设置为 100。 然后我做一个简单的减法来检查这个值是否真的是 100: va
我在这里看到了一些关于 CRC 32 计算的其他问题。但没有一个让我满意,因此是这样。 openssl 库是否有任何用于计算 CRC32 的 api 支持?我已经在为 SHA1 使用 openssl,
当我在PHP日期计算中遇到问题时,我感到惊讶。 $add = '- 30 days'; echo date('Y-m-01', strtotime($add)); // result is 2017-
我正在使用 javascript 进行练习,我编写了这个脚本来计算 2 个变量的总和,然后在第三个方程中使用这个总和!关于如何完成这项工作的任何想法都将非常有用! First Number:
我有一个来自EAC的提示单和一个包含完整专辑的FLAC文件。 我正在尝试制作一些python脚本来播放文件,因为我需要能够设置在flac文件中开始的位置。 如何从CueSheet格式MM:SS:FF转
这个问题已经有答案了: Adding two numbers concatenates them instead of calculating the sum (24 个回答) 已关闭去年。 我有一个
4000 我需要上面字段 name="quantity" 和 id="price" 中的值,并使用 javascript 函数进行计算,并将其显示在字段 id= 中仅当我单击计算按钮时才显示“总
我是一名优秀的程序员,十分优秀!