我之前没有遇到任何问题,所以我知道我的错误是微妙的。
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元素看起来像它们应该?
答案 0 :(得分:0)
我的错误是我按LinearLayout
扩展了自定义视图,但在RelativeLayout
上使用picker_dialog_layout.xml
定位。
布局中的元素没有显示,因为它们没有相对的父元素来定位