也许我只是瞎了。在对话框片段中,我膨胀了一些自定义布局。该按钮上没有使用任何样式。我使用 Holo.Light 作为主题。但是 Button 不是那种扁平的样式。
我该如何存档?
干杯,风筝冲浪者
也许我只是瞎了。在对话框片段中,我膨胀了一些自定义布局。该按钮上没有使用任何样式。我使用 Holo.Light 作为主题。但是 Button 不是那种扁平的样式。
我该如何存档?
干杯,风筝冲浪者
您必须设置正确的样式。我正在使用以下内容(应该在 HoneyComb+ 上工作):
<LinearLayout
style="?android:attr/buttonBarStyle"
android:layout_width="match_parent"
android:layout_height="48dp">
<Button
android:id="@+id/positive"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:drawableLeft="@drawable/ic_action_done"
android:drawablePadding="8dp"
android:gravity="start|center_vertical"
android:padding="4dp"
android:text="@string/done"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/negative"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.5"
android:drawableLeft="@drawable/ic_action_cancel"
android:drawablePadding="8dp"
android:gravity="start|center_vertical"
android:padding="4dp"
android:text="@string/cancel"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>