如何让微调器显示文本视图
How to get a spinner to display textview
我正在尝试制作一个微调器,每次从列表中选择一个项目时都会显示不同的文本视图。当我 运行 我的代码时,我可以在不同的项目之间切换,但文本不会根据选择进行更新。我查看了各种类似的问题,但 none 他们的解决方案满足了我的要求。
这是我的主要代码 activity:
Spinner spinner;
TextView example;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
example = (TextView) findViewById(R.id.example);
spinner = (Spinner) findViewById(R.id.spinner);
ArrayAdapter adapter=ArrayAdapter.createFromResource(this, R.array.medication_array,android.R.layout.simple_spinner_item);
spinner.setAdapter(adapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
switch(position)
{
case 0:
example.setText("Depression");
break;
case 1:
example.setText(R.string.ssriexample);
break;
case 2:
example.setText(R.string.snriexample);
break;
case 3:
example.setText(R.string.tcaexample);
break;
case 4:
example.setText(R.string.moiexample);
break;
case 5:
example.setText(R.string.otherexample);
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
}
如有任何提示,我将不胜感激,因为这是我第一次在 android 工作室编码,需要一些时间来适应。
从您发布代码的方式来看,您的听众似乎没有附加到微调器。调用 spinner.setOnItemSelectedListener(new listener)
或 spinner.setOnItemSelectedListener(this)
我正在尝试制作一个微调器,每次从列表中选择一个项目时都会显示不同的文本视图。当我 运行 我的代码时,我可以在不同的项目之间切换,但文本不会根据选择进行更新。我查看了各种类似的问题,但 none 他们的解决方案满足了我的要求。
这是我的主要代码 activity:
Spinner spinner;
TextView example;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
example = (TextView) findViewById(R.id.example);
spinner = (Spinner) findViewById(R.id.spinner);
ArrayAdapter adapter=ArrayAdapter.createFromResource(this, R.array.medication_array,android.R.layout.simple_spinner_item);
spinner.setAdapter(adapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
switch(position)
{
case 0:
example.setText("Depression");
break;
case 1:
example.setText(R.string.ssriexample);
break;
case 2:
example.setText(R.string.snriexample);
break;
case 3:
example.setText(R.string.tcaexample);
break;
case 4:
example.setText(R.string.moiexample);
break;
case 5:
example.setText(R.string.otherexample);
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
}
如有任何提示,我将不胜感激,因为这是我第一次在 android 工作室编码,需要一些时间来适应。
从您发布代码的方式来看,您的听众似乎没有附加到微调器。调用 spinner.setOnItemSelectedListener(new listener)
或 spinner.setOnItemSelectedListener(this)