我正在尝试实现新的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没有显示?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)