我有一个使用此方法动态创建按钮显示的应用程序
public void ButtonLayout() {
//Creates new layout and params to go with
final LinearLayout llb = (LinearLayout)findViewById(R.id.buttonlayout);
//Creates new buttons and indexes
for(int i = 0; i < count; i++) {
Button displayButton = buttonlist.get(i);
//Adds button to view with index and parameters
if(displayButton.getTag() == tag || tag == null){
llb.addView(displayButton, i, lp);
}
}
}
然后它会打开一个新的活动,它是一个菜单,菜单上有按钮,我希望能够从我的菜单活动中调用上述方法(重新加载所有按钮),我不能再次开始第一个活动。
有没有办法做到这一点?