0
を表示することはできません。私はTextViewsとボタンを見ることができませんでした。どうすればそれらを見せることができますか?DialogFragment onCreateViewは、私はこのようになります私のDialogFragmentでonCreateView方法を持っているすべてのビュー
マイレイアウトファイルは、このようなものです:私はあなたのコードを試してみたし、最初RelativeLayoutのこの
android:layout_height="fill_parent"
はあなたの他のビューを隠しているようだ
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/purchase_dialog"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<SeekBar
android:id="@+id/purchase_price"
android:layout_width="200dip"
android:layout_height="wrap_content"
android:inputType="number"
android:gravity="center_horizontal"
android:layout_alignParentRight="true">
</SeekBar>
<TextView
android:id="@+id/purchasing_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFF"
android:textSize="20dip"
android:gravity="center_horizontal"
android:layout_toLeftOf="@id/purchase_price"
android:text="@string/purchasing_text"
/>
</RelativeLayout>
<TextView
android:id="@+id/current_offer_price"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20dip"
android:gravity="center_vertical|center_horizontal"
/>
<RelativeLayout
android:id="@+id/layout_buttons"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btn_offer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/offer"/>
<Button
android:id="@+id/btn_purchase_dialog_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/btn_offer"
android:text="@string/cancel"/>
</RelativeLayout>
</LinearLayout>