我是靠谱客的博主 细心硬币,最近开发中收集的这篇文章主要介绍java setmodal 不管用_java – 无法动态设置setVisibility()参数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我正在设置一个按钮的可见性,如下所示:

public Bundle setActivityState(Bundle bundle){

startBtn = (Button) findViewById(R.id.startSensorsBtn);

startBtn.setVisibility(

getVisibilityState(bundle,PersistanceConstants.START_BTN_STATE)

);

return bundle;

}

public int getVisibilityState(Bundle bundle,String keyName){

if (bundle.getInt(keyName) == View.VISIBLE){

return View.VISIBLE;

} else if (bundle.getInt(keyName) == View.INVISIBLE){

return View.INVISIBLE;

} else if (bundle.getInt(keyName) == View.GONE){

return View.GONE;

}

return 0;

}

但我收到错误:

Must be one of: View.VISIBLE,View.INVISIBLE,View.GONE less... (Ctrl+F1)

Reports two types of problems:

- Supplying the wrong type of resource identifier. For example,when calling Resources.getString(int id),you should be passing R.string.something,not R.drawable.something.

- Passing the wrong constant to a method which expects one of a specific set of constants. For example,when calling View#setLayoutDirection,the parameter must be android.view.View.LAYOUT_DIRECTION_LTR or android.view.View.LAYOUT_DIRECTION_RTL.

而打电话

getVisibilityState(bundle,PersistanceConstants.START_BTN_STATE)

我不知道如何解决这个问题.我明白,它期待一组给定的值,但我知道的只是传递一个int.这里可以做些什么?

最后

以上就是细心硬币为你收集整理的java setmodal 不管用_java – 无法动态设置setVisibility()参数的全部内容,希望文章能够帮你解决java setmodal 不管用_java – 无法动态设置setVisibility()参数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部