我有一个列表视图,其中显示了联系人姓名。有更多的值与列表视图相关联。当我按下列表视图中的行时,我将 Hashmap 发送到其他活动,并且基于 HashMap 大小,我想动态创建 TextView 并将值分配给那些动态创建的 textview,例如 Name、Email、PhoneNo。
listview.OnItemClickListner
mListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View view, int position,
long id) {
// TODO Auto-generated method stub
@SuppressWarnings("unchecked")
HashMap<String, String> o = (HashMap<String, String>) mListView.getItemAtPosition(position);
Intent i = new Intent (Contacts.this , Contacts_Detail.class);
i.putExtra("HASHMAP", o);
startActivity(i);
}
});
联系人详细信息类
public class Contacts_Detail extends Activity {
LinearLayout mLinearlayout;
TextView rowTextView;
HashMap<String, String> ModuleName;
ArrayList<String> KEY;
List<TextView> allTxts;
private LayoutInflater inflater;
View layout;
@SuppressWarnings("unchecked")
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
mLinearlayout = (LinearLayout) findViewById(R.id.LinearLayout);
Bundle extras = getIntent().getExtras();
if (extras != null)
{
//map = HashMap<String, String>>getIntent().getSerializableExtra("MODULE_LIST");
ModuleName = (HashMap<String, String>) extras.getSerializable("HASHMAP");
//KEY = (ArrayList<String>) extras.getSerializable("KEY");
}
else
{
Toast.makeText(getApplicationContext(), "No Data Found", Toast.LENGTH_LONG).show();
return;
}
int N = ModuleName.size(); // total number of textviews to add
final TextView[] myTextViews = new TextView[N]; // create an empty array;
allTxts = new ArrayList<TextView>();
for (int i = 0; i < N; i++) {
// create a new textview
rowTextView = new TextView(this);
allTxts.add(rowTextView);
// set some properties of rowTextView or something
rowTextView.setText("This is TextView #" + i);
rowTextView.setId(i);
// add the textview to the linearlayout
mLinearlayout.addView(rowTextView);
// save a reference to the textview for later
myTextViews[i] = rowTextView;
}
}}
如您所见,所有文本视图都已成功创建。但我想将 HASHMAP 值分配给所有动态创建的文本视图。如何实现这一点。?
我可以为此使用布局充气机的概念吗??
提前致谢