以编程方式创建的视图显示不正确 (android)

Incorrectly displayed view created programmatically (android)

我以编程方式创建了一些视图,但在某些设备上它们显示错误。我有布局,我在其中以编程方式添加微调器。这是我的 xml:

container - 这是我创建微调器的布局(以编程方式)

spinnerL - 我在此处添加微调器

<LinearLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:orientation="horizontal"
        android:background="#26ffffff"
        android:layout_height="wrap_content">

        <LinearLayout
            android:id="@+id/spinnerL"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentTop="true"
            android:layout_weight="0.2"
            android:layout_centerHorizontal="true" />

        <RelativeLayout
            android:id="@+id/spinnerOpen"
            android:layout_width="match_parent"
            android:layout_marginRight="5dp"
            android:layout_weight="0.8"
            android:layout_height="match_parent">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/spinnerImage"
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true" />



        </RelativeLayout>

    </LinearLayout>

我在这里创建并添加微调器:

//here i set margins
View linearLayoutG = convertView.findViewById(R.id.container);

linearLayoutG.setBackgroundColor(Color.parseColor("#26ffffff"));

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);

layoutParams.setMargins(10, 0, 10, 30);
linearLayoutG.setLayoutParams(layoutParams);

//here i create spinner
View linearLayout = convertView.findViewById(R.id.spinnerL);
final Spinner spinner = new Spinner(context);

spinner.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));

//code

((LinearLayout) linearLayout).addView(spinner);

(抱歉关于链接,我没有 15 的声誉)

结果 android 4.0.1

结果 android 5+

如果我使用静态尺寸,像这样:

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.MATCH_PARENT, 120);

事情是这样的

结果 android 4.0.1

结果 android 5+

正如我在您的代码中看到的那样:

spinner.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT));

您正在将高度设置为 MATCH_PARENT。我不知道为什么它在 4.0.1 上工作,但将您的代码更改为:

spinner.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));