android–BottomSheetDialog没有显示?

android–BottomSheetDialog没有显示?,第1张

概述我正在尝试实现新的BottomSheetDialog,但是当我调用.show()时,它会显示背景阴影,但不显示我的布局.这是我的代码<?xmlversion="1.0"encoding="utf-8"?><android.support.v4.widget.NestedScrollViewxmlns:android="http://schemas.android.com/apkes/android"

我正在尝试实现新的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();

我该如何解决这个问题?

解决方法:

我遇到了这个问题,我的理由是

>对话框XML名称与其他模块XML文件名相同,因此请尝试将其重命名为另一个
>检查布局文件,可能有一些错误,保持最简单的布局测试.

总结

以上是内存溢出为你收集整理的android – BottomSheetDialog没有显示?全部内容,希望文章能够帮你解决android – BottomSheetDialog没有显示?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1119841.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存