如何制作自定义对话框的角度边缘

发布于 2025-01-06 10:46:24 字数 280 浏览 2 评论 0原文

当我创建自定义对话框时,它看起来像这样:
dialog

但我希望它看起来像这样:
dialog

When I create my custom dialog it looks like this :
dialog

but I want it to look like this :
dialog

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

不必你懂 2025-01-13 10:46:24

创建一个扩展 Dialog 的类并将其扩展为您的布局

public class CustomDialog extends Dialog
    {
        public CustomDialog (Context context)
        {
            //use this Theme, or any other theme you like
            super(context, android.R.style.Theme_Translucent_NoTitleBar);

            requestWindowFeature(Window.FEATURE_NO_TITLE);

            setContentView(R.layout.your_layout);
        }
    }

Create a class which extends Dialog and inflate it your layout

public class CustomDialog extends Dialog
    {
        public CustomDialog (Context context)
        {
            //use this Theme, or any other theme you like
            super(context, android.R.style.Theme_Translucent_NoTitleBar);

            requestWindowFeature(Window.FEATURE_NO_TITLE);

            setContentView(R.layout.your_layout);
        }
    }
因为看清所以看轻 2025-01-13 10:46:24

您可以使用自定义对话框并将您设计的 xml 填充到其中。

final Dialog yourDialog=new Dialog(context);
thumbnail_click.setContentView(R.layout.yourlayout);

You can use custom dialog and inflate your designed xml into it.

final Dialog yourDialog=new Dialog(context);
thumbnail_click.setContentView(R.layout.yourlayout);
挖个坑埋了你 2025-01-13 10:46:24

您可以使用自己的自定义对话框布局,如以下链接

自定义对话框

自定义对话框弹出

You can use your own cutom layout for dialog as in the follwing link

Custom dialog

Custom Dialog PoPup

菊凝晚露 2025-01-13 10:46:24

您始终可以扩充您自己的自定义对话框布局。

LayoutInflater inflater = getLayoutInflater();
View dialoglayout = inflater.inflate(R.layout.dialog_layout, (ViewGroup)     findViewById(R.id.dialog_layout_root));
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(dialoglayout);

You can always inflate your own custom dialog box layout.

LayoutInflater inflater = getLayoutInflater();
View dialoglayout = inflater.inflate(R.layout.dialog_layout, (ViewGroup)     findViewById(R.id.dialog_layout_root));
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(dialoglayout);
眼趣 2025-01-13 10:46:24

如果您还没有得到答案,这里有一个很好的教程: Toturial

您将需要制作您自己的 XML 形状样式文件,并使用角函数 ex:

<corners android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" />

if you haven't got an answer yet, here is a good toturial: Toturial

You vill need to make your own XML shape-style file, and use the corner function ex:

<corners android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文