0

我制作了一个自定义 xml,它有一个带有 layout_margins 集的 LinearLayout。如果我查看图形布局,它会显示边距,但在另一个活动中,当我尝试将此视图添加到 ScrollView 内的 LinearLayout 时,没有任何边距存在。这是自定义 xml 代码....

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/run_background"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="5dp">

<TextView
    android:id="@+id/tvRunName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@android:color/white"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:layout_gravity="center"
    android:layout_marginTop="10dp" />

这是添加视图的代码....

        for(int x = 0; x < runs.size(); x++){

        inflater = (LayoutInflater)this.getSystemService(this.LAYOUT_INFLATER_SERVICE);
        View layout = inflater.inflate(R.layout.run_layout, null);


        TextView name = (TextView) layout.findViewById(R.id.tvRunName);
        name.setText(runs.get(x).getName());

        llRuns.addView(layout);
    }

我怎样才能像我想要的那样隔开视图?

4

1 回答 1

1

扩展布局时不包含 LayoutParams。尝试在扩展布局时添加第三个参数:

View layout = inflater.inflate(R.layout.run_layout, null, false);
于 2013-08-09T16:25:29.117 回答