1

我以前做过这个没有问题,所以我知道我的错误很微妙。

picker_dialog_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="left|center_horizontal"
        android:id="@+id/pickerDialog_title"
        android:text="HELLO WORLD!!"/>
    <NumberPicker
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/pickerDialog_title"
        android:id="@+id/pickerDialog_selector"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/pickerDialog_selector"
        android:orientation="horizontal">
        <Button
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="5"
            android:id="@+id/pickerDialog_cancel"
            android:gravity="center"
            android:text="Cancel"/>
        <Button
            android:layout_height="match_parent"
            android:layout_width="0dp"
            android:layout_weight="5"
            android:id="@+id/pickerDialog_set"
            android:gravity="center"
            android:text="Set"/>
    </LinearLayout>
</merge>

在自定义类构造函数期间,PickerDialog(Context context, AttributeSet attrs, int defStyle)我调用:

LayoutInflater.from(context).inflate(R.layout.picker_dialog_layout, this);

在父 XML 中:

<com.company.simonaddicott.controlpanel_1.PickerDialog
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/pickerDialog" />

视图本身确实显示了,并且通过在开发人员工具中使用布局绑定工具,我可以确定存在 ui 元素,或者至少存在边界(见下文)

在此处输入图像描述

我缺少什么以使 UI 元素看起来像它们应该的那样?

4

1 回答 1

0

我的错误是我将自定义视图扩展了LinearLayout,但RelativeLayoutpicker_dialog_layout.xml.

布局内的元素没有显示,因为它们没有相对的父元素可以定位

于 2015-06-10T11:49:12.153 回答