我喜欢Dialog Fragment出现的主题:一个对话框弹出窗口,外面褪色,如果你在对话框外面点击消失了。我想在常规Fragment上使用这种风格,但我不知道如何。 Android库中必须有某个样式,但我不知道如何找到它。请帮帮我。
编辑1:DialogFragment对我来说很奇怪。这是我的布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:orientation="vertical"
android:weightSum="8">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
>
<ImageView
android:id="@+id/small_icon"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:contentDescription="@string/icon_title">
</ImageView>
<TextView
android:id="@+id/item_name"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:gravity="fill_vertical"
android:layout_toRightOf="@id/icon_title"/>
<ImageButton
android:id="@+id/save"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/save"
android:contentDescription="@string/save"/>
</RelativeLayout>
<View style="@style/divider" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="4">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:contentDescription="@string/image/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3">
</RelativeLayout>
</LinearLayout>
第二和第三个相对布局上还有一些项目,但即使我将其剪掉,我也遇到了同样的问题。我希望对话框除以LinearLayout
android:weightSum=8
,以便第一个RelativeLayout
占用对话框1/8
。但是,第一个`RelativeLayout延伸到整个Dialog。请给我一些线索。
答案 0 :(得分:0)
有一种风格,但其内部。
查看代码我建议您在需要DialogStyle时使用DialogFragment。