gpt4 book ai didi

android - BottomSheetDialog 没有显示?

转载 作者:太空宇宙 更新时间:2023-11-03 11:03:35 26 4
gpt4 key购买 nike

我正在尝试实现新的 BottomSheetDialog,但是当我调用 .show() 时,它显示背景阴影而不是我的布局。

这是我的代码

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:paddingStart="8dp"
android:paddingEnd="8dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Notes"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:textColor="@android:color/black"/>

<Switch
android:id="@+id/notes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"/>

</RelativeLayout>

</RelativeLayout>

</android.support.v4.widget.NestedScrollView>

然后:

    mSettingsDialog = new BottomSheetDialog(this);
View v = getLayoutInflater().inflate(R.layout.reader_settings, null);
mSettingsDialog.setContentView(v);
mSettingsDialog.show();

我该如何解决这个问题?

最佳答案

我遇到了这个问题,我的原因是

  1. dialog XML 名称与其他模块 XML 文件名称相同,因此请尝试将其重命名为另一个

  2. 查看布局文件,可能有错误,保持最简单的布局测试。

关于android - BottomSheetDialog 没有显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36722879/

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