- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
滚动时我在可扩展 ListView 中遇到问题,edittext 值发生变化。我尝试将值存储在模态类中并在 View 创建时设置该值。但是 Edittext 值在滚动时发生变化。请提出任何解决方案。这是我的代码用于可扩展 ListView 。给我一些提示或我在这段代码中出错的地方。
下面是我在android studio的日志
11-04 14:31:59.826 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{48bc9e8 VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos011-04 14:32:04.862 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{a67b858 VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos411-04 14:32:04.911 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{48bc9e8 VFED..CL。 ......ID 0,0-514,118 #7f080061 app:id/edtQty} Pos511-04 14:32:04.932 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{39f8d9c VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos611-04 14:32:05.681 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{d8d264 VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos311-04 14:32:05.738 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{bd81fa0 VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos211-04 14:32:05.815 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{39f8d9c VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos111-04 14:32:05.879 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{48bc9e8 VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos011-04 14:32:06.201 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{a67b858 VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos411-04 14:32:06.235 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{39f8d9c VFED..CL。 ......... 0,0-514,118 #7f080061 app:id/edtQty} Pos511-04 14:32:06.289 3632-3632/com.codefuelindia.healthcircleordermgmt E/edittext:-: android.support.design.widget.TextInputEditText{48bc9e8 VFED..CL。 ......ID 0,0-514,118 #7f080061 app:id/edtQty} Pos6
edittext引用重复,如何解决?
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import android.content.Context;
import android.graphics.Typeface;
import android.support.design.widget.TextInputEditText;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.TextView;
import com.codefuelindia.healthcircleordermgmt.R;
import com.codefuelindia.healthcircleordermgmt.model.CatMaster;
import com.codefuelindia.healthcircleordermgmt.model.ProChild;
public class ExpandableListAdapter extends BaseExpandableListAdapter {
private Context _context;
private ArrayList<CatMaster> _listDataHeader; // header titles
// child data in format of header title, child title
private HashMap<CatMaster, ArrayList<ProChild>> _listDataChild;
public ExpandableListAdapter(Context context, ArrayList<CatMaster> listDataHeader,
HashMap<CatMaster, ArrayList<ProChild>> listChildData) {
this._context = context;
this._listDataHeader = listDataHeader;
this._listDataChild = listChildData;
}
@Override
public Object getChild(int groupPosition, int childPosititon) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.get(childPosititon);
}
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public View getChildView(final int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
final ProChild childText = (ProChild) getChild(groupPosition, childPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_item, null);
}
TextView txtListChild = (TextView) convertView
.findViewById(R.id.lblListItem);
TextView tvUnitPrice;
final TextInputEditText edtQty;
final TextView tvTotalPrice;
tvUnitPrice = (TextView) convertView.findViewById(R.id.tvUnitPrice);
edtQty = (TextInputEditText) convertView.findViewById(R.id.edtQty);
edtQty.setText();
tvTotalPrice = (TextView) convertView.findViewById(R.id.tvTotalPrice);
txtListChild.setText(childText.getName());
tvUnitPrice.setText(childText.getPrice());
edtQty.setText(childText.getQty());
edtQty.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
f(!TextUtils.isEmpty(charSequence.toString())){
childText.setQty(charSequence.toString());
final double total=Double.parseDouble(childText.getPrice())*Integer.parseInt(charSequence.toString());
tvTotalPrice.setText("Total: ".concat(String.valueOf(total)));
}
else {
tvTotalPrice.setText("");
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
return convertView;
}
@Override
public int getChildrenCount(int groupPosition) {
return this._listDataChild.get(this._listDataHeader.get(groupPosition))
.size();
}
@Override
public Object getGroup(int groupPosition) {
return this._listDataHeader.get(groupPosition);
}
@Override
public int getGroupCount() {
return this._listDataHeader.size();
}
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
CatMaster headerTitle = (CatMaster) getGroup(groupPosition);
if (convertView == null) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_group, null);
}
TextView lblListHeader = (TextView) convertView
.findViewById(R.id.lblListHeader);
lblListHeader.setTypeface(null, Typeface.BOLD);
lblListHeader.setText(headerTitle.getCatName());
return convertView;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
}
最佳答案
在对 onchildView() 进行调试和分析后,我找到了可行的解决方案。我已经为商店父 View 和 subview 创建了查看器
class ViewHolder {
//Log.e("text view",txtListChild.toString());
TextView lblListHeader;
HashMap<Integer, HashMap<Integer, View>> multiHash = new HashMap<>();
HashMap<Integer, View> innerHashMap;
public ViewHolder(View v) {
innerHashMap = new HashMap<>();
lblListHeader = v.
findViewById(R.id.lblListHeader);
}
public View getInnerView(int pos, int groupPos) {
return multiHash.get(groupPos).get(pos);
}
// lblListHeader.setTypeface(null, Typeface.BOLD);
// lblListHeader.setText(headerTitle.getCatName());
public void setInnerView(int pos, int groupPos, View innerView) {
innerHashMap.put(pos, innerView);
multiHash.put(groupPos, innerHashMap);
}
}
以及用于从 hashmap 存储和检索 View 的 setter 和 getter 方法。如果 View 为空,我将 View 设置为 hashmap,否则从我存储的 hashmap 中获取 View 。希望遇到此问题的其他开发人员得到帮助来自这个答案。祝你有美好的一天..
@覆盖
public View getChildView(final int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
final ProChild childText = (ProChild) getChild(groupPosition, childPosition);
View myConvertView = convertView;
// Log.e("quantity:- ",childText.getQty().concat(String.valueOf(childPosition)));
final TextInputEditText textInputEditText;
if (convertView == null || !isLastChild || childPosition==this._listDataChild.get(this._listDataHeader.get(groupPosition))
.size()-1) {
LayoutInflater infalInflater = (LayoutInflater) this._context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = infalInflater.inflate(R.layout.list_item, null);
holder.setInnerView(childPosition, groupPosition, convertView);
TextInputEditText textInputEditText1 = convertView.findViewById(R.id.edtQty);
TextView tvUnitPrice = convertView.findViewById(R.id.tvUnitPrice);
final TextView tvTotalPrice = convertView.findViewById(R.id.tvTotalPrice);
final TextView tvHeader=convertView.findViewById(R.id.lblListItem);
tvHeader.setText(childText.getName());
textInputEditText1.setText(childText.getQty());
tvUnitPrice.setText(childText.getPrice());
tvTotalPrice.setText( String.valueOf(childText.getTotal()));
//holder.edtQty.setText(childText.getQty());
// edtQty.setText(_listDataChild.get(_listDataHeader.get(groupPosition)).get(childPosition).getQty());
textInputEditText1.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
//Log.e("child...",""+childPosition);
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void afterTextChanged(Editable editable) {
grandTotalOf = 0.0;
childText.setQty(editable.toString());
// _listDataChild.get(_listDataHeader.get(groupPosition)).get(childPosition).setQty(editable.toString());
if (!editable.toString().isEmpty() && !editable.toString().equals("0")) {
//final double total=Double.parseDouble();
final double total = Double.parseDouble(childText.getPrice()) * Integer.parseInt(editable.toString());
tvTotalPrice.setText("Total: ".concat(String.valueOf(total)));
childText.setTotal(total);
} else {
tvTotalPrice.setText("");
childText.setTotal(0);
grandTotal.setGrandTotal(0);
}
for(int i=0;i<_listDataHeader.size();i++){
for(int j=0;j<_listDataChild.get(_listDataHeader.get(i)).size();j++){
grandTotalOf=grandTotalOf + _listDataChild.get(_listDataHeader.get(i)).get(j).getTotal();
}
}
grandTotal.setGrandTotal(grandTotalOf);
}
});
return holder.getInnerView(childPosition, groupPosition);
} else {
convertView = holder.getInnerView(childPosition, groupPosition);
if (convertView == null) {
holder.setInnerView(childPosition, groupPosition, myConvertView);
convertView = holder.getInnerView(childPosition, groupPosition);
}
TextInputEditText textInputEditText1 = convertView.findViewById(R.id.edtQty);
TextView tvUnitPrice = convertView.findViewById(R.id.tvUnitPrice);
final TextView tvTotalPrice = convertView.findViewById(R.id.tvTotalPrice);
final TextView tvHeader=convertView.findViewById(R.id.lblListItem);
textInputEditText1.setText(childText.getQty());
tvUnitPrice.setText(childText.getPrice());
tvHeader.setText(childText.getName());
tvTotalPrice.setText( String.valueOf(childText.getTotal()));
edtQty.setText(_listDataChild.get(_listDataHeader.get(groupPosition)).get(childPosition).getQty());
textInputEditText1.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
//Log.e("child...",""+childPosition);
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void afterTextChanged(Editable editable) {
grandTotalOf=0.0;
childText.setQty(editable.toString());
// _listDataChild.get(_listDataHeader.get(groupPosition)).get(childPosition).setQty(editable.toString());
if (!editable.toString().isEmpty() && !editable.toString().equals("0")) {
//final double total=Double.parseDouble();
final double total = Double.parseDouble(childText.getPrice()) * Integer.parseInt(editable.toString());
tvTotalPrice.setText("Total: ".concat(String.valueOf(total)));
childText.setTotal(total);
grandTotal.setGrandTotal(total);
} else {
tvTotalPrice.setText("");
childText.setTotal(0);
grandTotal.setGrandTotal(0);
}
for(int i=0;i<_listDataHeader.size();i++){
for(int j=0;j<_listDataChild.get(_listDataHeader.get(i)).size();j++){
grandTotalOf=grandTotalOf + _listDataChild.get(_listDataHeader.get(i)).get(j).getTotal();
}
}
grandTotal.setGrandTotal(grandTotalOf);
}
});
return convertView;
}
}
关于android - 带有 EditText 的可扩展 ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47091018/
/** Called when the user clicks the Send button */ public void sendMessage(View view) { Intent i
我已经编写了 EditText 的子类。这是那个子类: package com.package.foo; import android.content.Context; import android.
我有一个用户名和密码 XML 段 我希望当用户名字段到达第9个字符时光标焦点自动跳转到密码字段 我在看 Focus next textview automatically并且正在尝试: fin
我知道这类问题被问过很多次。但仍然没有人给出完美的答案。 我有问题: 我想从 EditText1 ** 移动到另一个 **EditText2 。我已经检测到editText1,但如何将光标移动到edi
我有 2 个 EditText(myEditText1 和 myEditText2) 我需要触摸 myEditText1 1.做一些生意[这里没有问题,需要申请的业务] 2. 然后请求焦点到 myEd
我想在用户输入 EditText 时将文本放入我的应用程序中的某个字符串中,并使用它在 Activity 中生动地显示它(在不同的 View 中......) - 就像谷歌的实时/即时搜索一样...
当我将文本插入到我的 EditText 字段时,文本本身与 EditText 的行之间存在异常间隙。这是我终端的打印屏幕,您可以在其中看到我正在谈论的这个差距,它被标记为红色。 我试过文本对齐和引力但
我的应用程序需要帮助。这是我的相对布局的 xml 文件,我需要在按下 Enter 键后跳转到下一个编辑文本。但是有一个问题,如果我正在写入 editTextKm 并按 Enter 键,它会跳转到 ed
Hello All 我已经将 onLongClickListener() 用于我的 EditText View ,但是每当我长时间单击 View 时,就会出现一个弹出窗口,不允许我执行我的操作onLo
EditText 快把我们逼疯了!真的! 我们的应用程序登录屏幕出现问题。它包含两个 EditText,但只有第一个(用户名)获得焦点,通过 SoftKeyboard 仅在触摸/单击用户名 EditT
如何在kotlin中获取editText并用toast显示。 var editTextHello = findViewById(R.id.editTextHello) 我试过了,但显示对象 Toast
我一直在浏览各种线索来解决这个问题,但我仍然感到困惑。当我将“adjustPan”应用于底部具有 EditText 的 Activity 时,UI 会正确向上推,但编辑文本会被底部的键盘稍微遮挡。经过
我有两个类:a 和 b。在类 a 中,我有一个线程,当变量 x 的值小于 1000 时,它会将变量 x 加一。在类 b(Activity 类)中,我有一个名为 ed 的 EditText。每当a类中x
今天我遇到了一个非常有趣的情况。 假设: EditText 从 XML 实例化。 EditText editText; editText = findViewByID(R.id.editT
有谁知道我的代码出了什么问题,我正在尝试比较编辑文本字段中的输入,以确保它们在创建帐户之前具有相同的值。 //compare the fields contents if(editT
制作一个简单的卡路里转换器。 这是图片中的问题。 我使用的是 Genymotion 模拟器。 这是我遇到问题的屏幕部分: 当我单击 EditText 数字字段时,数字键盘会出现 但是我必须单击下一个箭
全部 - 我试图隐藏 EditText B、C,直到 EditText A 中至少有一个字符。我尝试过使用文本观察器... EditText editText = (EditText) findVie
我正在努力完成 “Sam 的 24 小时 Android 应用程序开发技术”,但在某些时候我的昵称和电子邮件设置停止正确保存。它现在根本不保存昵称并将电子邮件保存到两者。我做了什么导致这个,我该如何解
我有一个 SharedPreferences,它保存来自一个 Activity 的 EditText 输入并在另一个 Activity 中显示字符串值。 当我在 EditText 字段中输入内容并按下
这一定是一个我可能会再次忽略的简单问题。这是我的问题我的 string.xml 上有一个字符串数组 Alabama Florida Los Angeles Virgi
我是一名优秀的程序员,十分优秀!