gpt4 book ai didi

Android - 检查布局是否存在

转载 作者:太空狗 更新时间:2023-10-29 16:19:06 25 4
gpt4 key购买 nike

有什么方法可以在使用 setContentView(R.layout.mylayoutid) 之前检查某个布局 ID 是否存在?

类似于:

if(layout_exists("mylayoutid"))
setContentView(R.layout.mylayoutid);
else
setContentView(R.layout.defaultlayout);

在开发者文档中找不到任何内容。

谢谢!

最佳答案

是的,有。

int layoutId = getContext().getResources().getIdentifier("mylayoutid","layout", getContext().getPackageName());
if (layoutId == 0){
// this layout doesn't exist
} else {
setContentView(layoutId);
}

关于Android - 检查布局是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20078345/

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