我刚开始使用 android,并在此处发布之前尝试了以下问题以获得此答案:
通过获取每个孩子的位置动态地将孩子添加到 LinearLayout
而且我仍然无法向线性布局添加按钮:(
以下是活动代码,请让我知道我错在哪里:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
LinearLayout layout = (LinearLayout) View.inflate(this, R.layout.activity_main, null);
Button btn = new Button(this);
btn.setId(123);
btn.setText("Welcome to WI FI World");
layout.addView(btn);
}
xml 如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>