首先,我是这个Android编程的初学者。
我的应用程序在TabHost中定义了2个活动,因此选项卡1和选项卡2。 在选项卡1中,我收到一个EditText输入,我想在ListView中的选项卡2(活动2)中显示。
为此,我使用本教程创建了一个自定义ListView:http://www.ezzylearning.com/tutorial/customizing-android-listview-items-with-custom-arrayadapter
现在: 我在Edit 1的帮助下将EditText值作为String传递给选项卡2。
//Intent to tab 2
Intent intent = new Intent(getBaseContext(), Tab2Activity.class);
intent.putExtra("values", streetName);
startActivity(intent);
在我的Tab 2(Tab2Activity)中,我收到了这样的意图:
public void onResume (){
super.onResume();
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
if (bundle != null) {
updateData(bundle);
}
}
public void updateData (Bundle bundle) {
String data = bundle.getString("values");
Toast.makeText(this, data, Toast.LENGTH_LONG).show();
Bostad bostad_data[] = new Bostad[]{new Bostad (streetName, money)};
adapter = new BostadAdapter(this, R.layout.listview_item_row, bostad_data);
listView.setAdapter(adapter);
adapter.notifyDataSetChanged();
...
}
我有两个问题(两个问题)。
1)我知道,因为我在Tab1中调用“startActivity(intent)”,这将打开活动,而不是在选项卡中。是否可以只切换选项卡并更新listView?(这不是必需的。如果这是一个简单的解决方案)
2)我在屏幕上显示了正确信息的活动,但Tab2中的listView未使用此信息进行更新。我怎样才能解决这个问题? 我的意思是,行不会添加到列表视图中。我做错了什么?
感谢您的帮助!
编辑:也在Activity2中添加onCreate。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tab2);
//Create listView and connect to the .xml (activity_tab2)
listView = (ListView) findViewById(R.id.listView1);
//Arrayen which the list will receive values from
Bostad bostad_data[] = new Bostad[]{
new Bostad("", "")
};
adapter = new BostadAdapter(this, R.layout.listview_item_row, bostad_data);
View header = getLayoutInflater().inflate(R.layout.listview_header_row, null);
listView.addHeaderView(header);
listView.setAdapter(adapter);
...
}
编辑2:添加BostadAdapter.java
public class BostadAdapter extends ArrayAdapter<Bostad> {
Context context;
int layoutResourceId;
Bostad data[] = null;
public BostadAdapter(Context context, int layoutResourceId, Bostad[] data) {
super(context, layoutResourceId, data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.data = data;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
BostadHolder holder = null;
if(row == null) {
LayoutInflater inflater = ((Activity)context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new BostadHolder();
holder.gatunamn = (TextView)row.findViewById(R.id.gatunamn);
holder.totalkostnad = (TextView)row.findViewById(R.id.totalkostnad);
row.setTag(holder);
}
else {
holder = (BostadHolder)row.getTag();
}
Bostad bostad = data[position];
holder.gatunamn.setText(bostad.gatunamn);
holder.totalkostnad.setText(bostad.totalkostnad+" SEK per månad");
return row;
}
static class BostadHolder
{
TextView gatunamn, totalkostnad;
}
}
编辑3:添加Bostad.java
public class Bostad {
String gatunamn, totalkostnad;
public Bostad (){
super();
}
public Bostad (String gatunamn, String totalkostnad) {
super();
this.gatunamn = gatunamn;
this.totalkostnad = totalkostnad;
}
}
答案 0 :(得分:0)
如果我理解得当,我认为你正在做的是创建一个看起来与标签2相同但不是同一个对象的新活动。因此,您在startActivity()中启动的活动是唯一获取数据的活动。我建议使用带有片段和接口的ViewPager来传递/更新父活动中的数据。这可能有点太先进了,而且你不能轻易地写出答案,但是有很多关于这个过程的教程。当你刚刚开始时,你可能想要探索更快的选择,但这就是我所做的。
快速修复可能是访问选项卡主机并将现有选项卡2活动替换为您刚刚创建的包含数据的活动。