0

嘿,我想知道是否有人可以帮助我编辑我的代码以显示文本视图而不是类。谢谢你的帮助。

当前代码:

public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
    String classSpot = classes[pos];
    try {
        Class nextClass = Class.forName("com.example.famouspeople." + classSpot);
        final Context context = this;
        Intent intent = new Intent(context,nextClass);
        startActivity(intent);

    }
    catch(ClassNotFoundException e){
        e.printStackTrace();
    }
}
4

1 回答 1

2

我在布局中有 6 个与此类匹配的文本视图。它们都设置为可见性“消失”,我希望将与微调器中的项目相对应的设置设置为可见。

所以这不应该是棘手的。所以你已经实现了监听器并做出了想要的动作。

public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
   String val = someFunction();
   if (val.equals("somevalue")) {
      textView.setVisibility(TextView.VISIBLE);
   }
}
于 2013-03-13T21:52:17.180 回答