我需要将视图动态添加到我LinearLayout的 xml 文件中已有的视图中。我尝试添加布局并能够添加它,但问题是我无法正确将布局权重属性设置为自定义添加的视图。它总是有问题。
这是我的 XML(我期待的视图)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linear_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_weight="1">
<TextView
android:layout_width="0dp"
android:layout_height="100dp"
android:layout_weight="0.1"
android:text="text 1" />
<TextView
android:layout_width="0dp"
android:layout_height="100dp"
android:layout_weight="0.6"
android:text="text 2" />
<CheckBox
android:layout_width="0dp"
android:layout_height="100dp"
android:layout_weight="0.3"
android:text="Check Box 1" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)
他是我的 Java 代码,我将视图动态添加到布局中
public class MyActivity extends Activity {
private ViewGroup mLinearLayout; // this should be your main layout where your planning to add the views programatically
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout1);
mLinearLayout = (ViewGroup) findViewById(R.id.linear_layout);
addLayout("text …Run Code Online (Sandbox Code Playgroud) android android-layout android-linearlayout android-layout-weight