AlertDialog操作按钮放置

时间:2015-12-30 23:11:14

标签: android alertdialog

我已使用AlertDialog创建AlertDialog.Builder,并希望调整操作按钮的位置(取消和确定)以改善其外观。

我已经搜索过,似乎找不到任何简单的方法。我是否必须放弃AlertDialog.Builder并将操作按钮功能添加到我的视图并设置所有侦听器?如果是这样,我如何确定操作按钮的文字大小/颜色与其他AlertDialog保持一致?

Screenshot of the popup

popup_tee_selection_edittext.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="10dp" >

<TextView
    android:id="@+id/popup_tee_selection_TextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/enter_new_tee"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<EditText
    android:id="@+id/popup_tee_selection_EditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <requestFocus />
</EditText>

<Switch
    android:id="@+id/popup_tee_selection_Switch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal|start"
    android:showText="true"
    android:textOff="Men"
    android:textOn="Women"
    android:thumbTextPadding="10dp"
    android:thumb="@drawable/custom_switch_inner_holo_light"
    android:track="@drawable/custom_switch_track_holo_light"/>

</LinearLayout>

代码片段

private void popupTeeSelectionEditText() {
    View popupView = LayoutInflater.from(getActivity()).inflate(R.layout.popup_tee_selection_edittext, null);
    final EditText userInput = (EditText) popupView.findViewById(R.id.popup_tee_selection_EditText);

    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getActivity());
    alertDialogBuilder
            .setView(popupView)
            .setCancelable(false)
            .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    String selectedItem = userInput.getText().toString();
                    if (DEBUG) Log.w(TAG, "Returned value: '" + selectedItem + "'");
                    if (listViewAlertDialog != null)
                        listViewAlertDialog.cancel();
                    processTeeSelectionCourse(selectedItem);
                }
            })
            .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    dialog.cancel();
                }
            })
            .show();
}

3 个答案:

答案 0 :(得分:1)

创建对话框后,AlertDialog方法getButton可用于获取操作按钮。然后,您可以根据需要更改textSize,textColor等。我不认为你能够改变它的位置。

要相对于其他内容视图精确定位按钮,您需要自己在popupView中添加它们。

答案 1 :(得分:1)

AFAIK,一个提供给对话框构建器的视图仅用于对话框的中央部分,顶部没有Title部分,底部的按钮部分没有。要想了解您的目标,您需要将自定义按钮添加到此视图,设置适当的侦听器,然后隐藏原始按钮。

要设置要匹配的颜色,请检查应用的主要颜色和重音颜色。如果没有指定,你可以将它们设置为android默认值,或者可能在应用主题设置中指定它们,以便应用中的所有对话框都具有相同的外观。

查看此answer以查看如何为对话框按钮设置自定义颜色。

答案 2 :(得分:0)

您是否在堆栈溢出中搜索了其他类似的问题?

以下是一些可能能够帮助您的解决方案。链接如下。

对于第二个链接,一直向下滚动到底部,他们会简要讨论如何创建自己的自定义对话框。使用自定义对话框,您应该能够获得所需的格式。

Sound Conception提到的getButton()方法也可能是一种可行的方法。