gpt4 book ai didi

android - 如何在 Android 上居中自定义对话框标题

转载 作者:行者123 更新时间:2023-11-29 15:55:07 25 4
gpt4 key购买 nike

我正在 android 上编写自定义对话框。我使用 onCreateView 方法完成了此操作。

public class CheckpointLongPressDialog extends DialogFragment {

public void CheckpointLongPressDialog() {}

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_checkpoint_long_press_dialog, container);
getDialog().setTitle("TITLE");
return view;
}

如何以编程方式使标题居中?

最佳答案

也许这不是最好的方法,我使用自定义标题 TextView。

TextView title = new TextView(mainActivity);
title.setText(alertTitle);
title.setBackgroundResource(R.drawable.gradient);
title.setPadding(10, 10, 10, 10);
title.setGravity(Gravity.CENTER); // this is required to bring it to center.
title.setTextSize(22);
getDialog().setCustomTitle(title);

关于android - 如何在 Android 上居中自定义对话框标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28451340/

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