我的目标是在Android Studio中动态生成视图的布局。最终目标是动态生成以下视图
编号-名称-角色
全部一行。
这是Android Studio中的当前背景代码,当前其布局设置如下
号 名称 角色
代码
private void GenerateLayout()
{
llisroles = findViewById(R.id.llRoles);
for (int x = 0; x < num_players; x++)
{
TextView number = new TextView(this);
EditText name = new EditText(this);
Spinner role = new Spinner(this);
//number.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));
//name.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));
number.setText(names_players[x]);
name.setText("");
llisroles.addView (number);
llisroles.addView(name);
llisroles.addView(role);
}
}
任何反馈将不胜感激!
谢谢