gpt4 book ai didi

android - 在 DialogFragment 的标题中放置一个按钮

转载 作者:行者123 更新时间:2023-11-30 02:42:45 26 4
gpt4 key购买 nike

我显示来自另一个 DialogFragmentDialogFragment。我需要在它旁边设置标题和按钮。我不想重新实现主题并在 DialogFragment 的内容 View 中创建自定义 View 而不是对话框标题(因为它容易出错且浪费时间)。有可能吗?我尝试了很多 API 函数,AlertBuilderActionBar,这个和那个,仍然没有找到适合我需要的东西。

最佳答案

尝试这样的事情:

// Title
final int titleId = getResources().getIdentifier("alertTitle","id","android");
TextView title = (TextView) popup.findViewById(titleId);
title.setText("My new title");

// Title's parent layout
ViewGroup viewGroup = (ViewGroup) title.getRootView();

// Button
Button button = new Button(this);
button.setText("A Button");
viewGroup.addView(button);

注意:您可能需要调整 buttontitle 对象的 LayoutParams

关于android - 在 DialogFragment 的标题中放置一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25530127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com