在安卓中使用自定义xml视图创建AlertDialog

7

图片描述

如何在安卓中创建像这样的对话框?我的想法是创建一个自定义xml视图并将其填充到对话框中。还有其他建议吗?那个对话框中间的“拖动线”叫什么?我真的很需要它。

提前感谢


那个被称为“拖动线”的进度条,或者你也可以使用SeekBar。至于你的对话框,请参考我的答案。 - Pratik Dasa
1
你所说的拖动条被称为“进度条”。 - Rohit Goswami
这里已经有一个关于你问题的答案了 https://dev59.com/u2Yr5IYBdhLWcg3w29vi#13342157 - Vilen
@QuinnWei 你做完了吗? - Pratik Dasa
3个回答

19

以下是您可以参考的代码:

main.xml

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

    <Button
        android:id="@+id/buttonShowCustomDialog"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Custom Dialog" />

</LinearLayout>

dialog.xml:在对话框中创建您想要的任何设计。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp" />

    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#FFF" 
        android:layout_toRightOf="@+id/image"/>/>

     <Button
        android:id="@+id/dialogButtonOK"
        android:layout_width="100px"
        android:layout_height="wrap_content"
        android:text=" Ok "
        android:layout_marginTop="5dp"
        android:layout_marginRight="5dp"
        android:layout_below="@+id/image"
        />

</RelativeLayout>

主活动:

public class MainActivity extends Activity {

    final Context context = this;
    private Button button;

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        button = (Button) findViewById(R.id.buttonShowCustomDialog);

        // add button listener
        button.setOnClickListener(new OnClickListener() {

          @Override
          public void onClick(View arg0) {

            // custom dialog
            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.dialog);
            dialog.setTitle("Title...");

            // set the custom dialog components - text, image and button
            TextView text = (TextView) dialog.findViewById(R.id.text);
            text.setText("Android custom dialog example!");
            ImageView image = (ImageView) dialog.findViewById(R.id.image);
            image.setImageResource(R.drawable.ic_launcher);

            Button dialogButton = (Button) dialog.findViewById(R.id.dialogButtonOK);
            // if button is clicked, close the custom dialog
            dialogButton.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {
                    dialog.dismiss();
                }
            });

            dialog.show();
          }
        });
    }
}

2

0

如果您正在使用Holo主题,我认为这是Android的标准对话框。您只需要为您的应用程序使用Holo主题即可。

在您的清单文件中的应用程序标记中添加以下内容: android:theme="@android:style/Theme.Holo"


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接