gpt4 book ai didi

android - 如何在横向 fragment 布局中显示对话框横向方向?

转载 作者:行者123 更新时间:2023-11-30 00:29:34 26 4
gpt4 key购买 nike

有没有什么方法可以在横向 Activity 中以横向模式显示对话框?

这是我的对话框显示代码:

  Dialog dialog = new Dialog(getActivity());
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.dialog_todays_pick_list);
// setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
dialog.show();

通过使用上面的代码,对话框以纵向模式显示。

最佳答案

糟糕,这有点晚了,但可以帮助其他有需要的人。

要实现这一目标,只需遵循四个基本步骤

  1. 为对话框创建自定义布局
  2. 使用 LayoutInflater 类在 Dialog 中展开布局
  3. 获取窗口管理器的参数,并将主题设置为 Width="MATCH_PARENT"和 Height="WRAP_CONTENT"
  4. 最后,设置Dialog窗口的layout参数

对于你的笑脸,请看下面的代码 fragment 。

LayoutInflater inflater = getLayoutInflater();
View dialogView = inflater.inflate(R.layout.dialog_screen, null);

final Dialog dialogShowInfo = new Dialog(mContext);
dialogShowInfo.setContentView(dialogView);
dialogShowInfo.setCancelable(false);

TextView tvInputsValuesAll =
dialogShowInfo.findViewById(R.id.tvInputsValuesAll);

Button btnCncl = dialogShowInfo.findViewById(R.id.btnCncl);
btnCncl.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialogShowInfo.dismiss();
}
});

WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
Window windowAlDl = dialogShowInfo.getWindow();

layoutParams.width = WindowManager.LayoutParams.MATCH_PARENT;
layoutParams.height = WindowManager.LayoutParams.WRAP_CONTENT;

windowAlDl.setAttributes(layoutParams);
dialogShowInfo.show();

关于android - 如何在横向 fragment 布局中显示对话框横向方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44691268/

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