我创建了一个简单的评级对话框,将FragmentDialog
. 结果下方:
但我想获得一种按钮样式,就像在 android 中使用的典型对话框中使用的那样
我怎样才能得到这个结果?
我创建了一个简单的评级对话框,将FragmentDialog
. 结果下方:
但我想获得一种按钮样式,就像在 android 中使用的典型对话框中使用的那样
我怎样才能得到这个结果?
<View
android:id="@+id/divider"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_above="@+id/submit_layout"
android:layout_alignParentBottom="false"
android:background="?android:attr/listDivider" />
<LinearLayout
android:id="@+id/submit_layout"
style="@style/ButtonBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:descendantFocusability="beforeDescendants"
android:gravity="center_vertical"
android:minHeight="48dp"
android:orientation="vertical" >
<Button
android:id="@+id/reload_btn"
style="@style/ButtonBarButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/selectable_item_background"
android:minHeight="48dp"
android:text="Submit" />
</LinearLayout>
和“selectable_item_background.xml”:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/item_pressed" android:state_pressed="true" />
<item android:drawable="@drawable/item_focused" android:state_focused="true" />
<item android:drawable="@drawable/item_focused" android:state_selected="true" />
<item android:drawable="@android:color/transparent" />
</selector>
将 STYLE_NO_FRAME 提供给 DialogFragment 的方法 setStyle(int, int) 并使用 TextViews 而不是自定义布局中的两个按钮应该可以解决问题。