我点击了一个按钮,一个新的
,只有一个组,我做了一个可扩展的视图 添加了该组中的行,当输入
时,这些行包含文本框中的一些数据从行,我发现当我添加4行时,我得到7行输入,总是像这样
定量,当添加5行时我得到8个输入就好了,不明白试着做很多技巧。
你可以帮助我从这些行获取输入的最佳方法。 actlist是接收输入的数组列表。 在下面有代码活动
public class AddActActivity extends ExpandableListActivity implements
OnGroupClickListener,OnClickListener {
/** Called when the activity is first created. */
public TextView ShowTitle;
public TextView Date;
public static long cuesheetnimber;
public static ExpandableListView expandableListView;
public static ActAdapter expListAdapter;
static ArrayList<String> groupNames = new ArrayList<String>();
static ArrayList<ArrayList<Acts>> obsList = new ArrayList<ArrayList<Acts>>
();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.addact);
ShowTitle = (TextView)findViewById(R.id.showtitleact);
ShowTitle.setText(getIntent().getStringExtra("ShowTitle"));
Date = (TextView)findViewById(R.id.showdateact);
Date.setText(DateSpinner.date);
cuesheetnimber=getIntent().getLongExtra("_ID", 0);
expandableListView =getExpandableListView();
expandableListView.setOnGroupClickListener(this);
expListAdapter = new ActAdapter( this,groupNames, obsList );
setListAdapter( expListAdapter );
expListAdapter.groups.add("a");
//AUDITDATA.HCWlist[AUDITDATA.row]=AUDITDATA.HCWNAME;
ArrayList<Acts> obs = new ArrayList<Acts>();
obs.add(new Acts());
//AUDITDATA.row++;
expListAdapter.childs.add(obs);
expandableListView.expandGroup(0);
expListAdapter.notifyDataSetChanged();
Button add=(Button)findViewById(R.id.button_add_act);
add.setOnClickListener(this);
Button SaveandExit=(Button)findViewById(R.id.SaveandExit);
SaveandExit.setOnClickListener(this);
}
@Override
public boolean onGroupClick(ExpandableListView parent, View v,
int groupPosition, long id) {
// TODO Auto-generated method stub
return false;
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.button_add_act:
Button b=(Button)v;
b.setText("Add Another Act");
expListAdapter.addHcwGroup(expandableListView);
// expListAdapter.notifyDataSetChanged();
break;
case R.id.SaveandExit:
// expListAdapter.notifyDataSetChanged();
saveandexit();
clear();
finish();
break;
default:
break;
}
}
private void clear() {
// TODO Auto-generated method stub
ActAdapter.actlist.clear();
ActAdapter.groups.clear();
ActAdapter.childs.clear();
}
@Override
public void onBackPressed() {
ActAdapter.actlist.clear();
ActAdapter.groups.clear();
ActAdapter.childs.clear();
// TODO Auto-generated method stub
super.onBackPressed();
}
private void saveandexit() {
// TODO Auto-generated method stub
for (Acts act :ActAdapter.actlist) {
Init.setActs(this, act);
}
}
}
And here is adapter code
;
import java.util.ArrayList;
import android.content.Context;
import android.graphics.Color;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.EditText;
import android.widget.ExpandableListView;
import android.widget.TimePicker;
public class ActAdapter extends BaseExpandableListAdapter {
public static int staticindex = 0;
private Context context;
static public ArrayList<String> groups;
static public ArrayList<ArrayList<Acts>> childs;
private LayoutInflater inflater;
public boolean flag = false;
public ActAdapter(Context context, ArrayList<String> groups,
ArrayList<ArrayList<Acts>> childs) {
this.context = context;
this.groups = groups;
this.childs = childs;
inflater = LayoutInflater.from(context);
}
public Object getChild(int groupPosition, int childPosition) {
return childs.get(groupPosition).get(childPosition);
}
public long getChildId(int groupPosition, int childPosition) {
return (long) (groupPosition * 1024 + childPosition); // Max 1024
// children per
// group
}
public void setChilds(ArrayList<ArrayList<Acts>> childs) {
this.childs = childs;
}
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
View v = null;
long ShowID=AddActActivity.cuesheetnimber;
EditText ACTNUMBER;
EditText ACTTITLE;
TimePicker STARTTIME;
TimePicker ENDTIME;
EditText ACTIONDATA;
EditText NOTE;
if (convertView != null) {
v = convertView;
Log.d("dfg", groupPosition+"act set"+childPosition);
ACTNUMBER = (EditText) v.findViewById(R.id.ActionNumber);
ACTTITLE = (EditText) v.findViewById(R.id.ActionTitle);
STARTTIME = (TimePicker) v.findViewById(R.id.starttime);
ENDTIME = (TimePicker) v.findViewById(R.id.endttime);
ACTIONDATA = (EditText) v.findViewById(R.id.Actionname);
NOTE = (EditText) v.findViewById(R.id.Noteact);
Acts acts = new Acts();
acts.setShowID(ShowID + "");
acts.setACTIONDATA(ACTIONDATA.getText().toString());
acts.setACTNUMBER(ACTNUMBER.getText().toString());
acts.setNOTE(NOTE.getText().toString());
acts.setACTTITLE(ACTTITLE.getText().toString());
acts.setENDTIME(ENDTIME.getCurrentHour().toString() + "x"
+ ENDTIME.getCurrentMinute().toString());
acts.setSTARTTIME(STARTTIME.getCurrentHour().toString() +
"x"
+ STARTTIME.getCurrentMinute().toString());
actlist.add(acts);
} else {Log.d("dfg", "chil null");
actlist.clear();
v = inflater.inflate(R.layout.act_child_row, parent,
false);
}
return v;
}
public int getChildrenCount(int groupPosition) {
if (groupPosition > (groups.size() - 1))
return 0;
return childs.get(groupPosition).size();
}
public Object getGroup(int groupPosition) {
return groups.get(groupPosition);
}
public int getGroupCount() {
return groups.size();
}
public long getGroupId(int groupPosition) {
return (long) (groupPosition * 1024); // To be consistent with
// getChildId
}
static int po = 0;
public static ArrayList<Acts> actlist = new ArrayList<Acts>();
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
po++;
View v = null;
if (convertView != null) {
v = convertView;
Log.d("dfg", "grp reloaded");
} else {
v = inflater.inflate(R.layout.act_group_row, parent, false);
Log.d("dfg", "grp created");
}
;
return v;
}
public static void save()
{}
public boolean hasStableIds() {
return true;
}
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
public void addHcwGroup(ExpandableListView expandableListView) {
childs.get(0).add(new Acts());
notifyDataSetChanged();
}
public void onGroupCollapsed(int groupPosition) {
}
public void onGroupExpanded(int groupPosition) {
}
}
感谢您尝试提供帮助
答案 0 :(得分:1)
对不起,我很抱歉。我已经测试了代码,似乎与这个问题有关,没有什么是错误的。在我的系统上发生的是ExapandableListActivity
加载,然后我单击添加按钮,首先加载2个子行,然后加载1个子行。 但是您的适配器启动时已准备好加载一行。 AND 您必须意识到的是ExpandableListView
初始化已弃用。你没有调用.expandGroup();
方法直到点击的按钮 AFTER 你已经在那里添加了第二行。我希望这是有道理的。也许它并不那么明显,因为你的groupView
什么也没有显示。
基本上我的建议是在你致电.expandGroup();
之后立即调用setListAdapter();
命令以使事情更加明显。那么你应该明白你需要调整什么才能得到你想要的结果。
convertView
,但它不可靠,因为它绝对不会将最近删除的视图放回到同一位置,无论如何都不是故意的。一旦他们不在视线范围内,它会继续洗牌,我确定你不想要。你的方法肯定会给你带来问题,因为你一直在清理getView中的集合,而且你还没有考虑过如何在用户完成&#34;完成时捕获数据。输入它。
但是,无论如何,如果你想要它,你可以尝试将textwatchers应用于所有内容并让它们不断调整集合中的相应值。这个技术在Yami's
答案中突出显示:How to get values from grid view。
然而,我觉得这太费力了。您可能会发现使TableLayout
更有益,因为它会将所有内容保存在内存中,您可以将所有视图添加到布局中,然后将这些视图添加到相应的集合中,然后您可以简单地循环遍历tablelayout的内容检索你的价值观。这是一种替代方案,尽管如果不进行某种程度的管理,你的大麻就会受到影响
更好的性能方面是在ExpandableListView
的每个子项上加入一个按钮,这样只有单击该按钮,才能将相应行的内容保存到集合中。
到目前为止,我只给你提供我能想到的解决方案,但如果你亲自问我怎么做,我就不会使用某种类型的ListView
为此。我会将此组件视为一个表单,我会尝试将其作为Dialog
。然后我可以简单地将一整套细节显示为单独的列表(如果我选择的话),但只有一个xml通胀用于输入细节。