0

在收到活动的结果后,我试图在布局中隐藏 textView。我有一个变量声明 - 查看 lblEmptyList,我在 onCreate 中对其进行了实例化:

lblEmptyList = findViewById(R.id.emptyList);

我试过这个:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            switch (requestCode) {

            case 1:
...
lblEmptyList.setVisibility(View.GONE);

但我收到“无法访问的代码”错误。我试图像这样直接访问它:

findViewById(R.id.emptyList).setVisibility(View.GONE);

我尝试使用数值而不是 View.GONE,但我不断收到此“无法访问的代码”错误。我如何解决它?

4

1 回答 1

0

lblEmptyList.setVisibility(View.GONE);行必须在其余代码之前执行。

于 2012-10-24T13:04:00.593 回答