如何在Spinner中获取选定项以显示TextView

时间:2013-03-13 21:39:07

标签: android

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

当前代码:

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();
    }
}

1 个答案:

答案 0 :(得分:2)

  

我在布局中有6个与此类匹配的文本视图。他们是   所有设置为可见性“消失”,我想要对应的那个   将微调器中的项设置为可见。

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

public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
   String val = someFunction();
   if (val.equals("somevalue")) {
      textView.setVisibility(TextView.VISIBLE);
   }
}