我的布局包含我在旋转器中使用的TextView。如何根据我的微调器在运行时更改android:text
。
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?android:attr/spinnerItemStyle"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:textSize="18sp"
android:textColor="#808080"
android:text="@string/month"/>
答案 0 :(得分:-1)
如果您要在微调器中查找当前所选项目的文本,然后将其设置为另一个textview,则需要执行此操作
Spinner spinner = (Spinner) findViewById(R.id.idOfSpinner);
TextView textView = (TextView)findViewById(R.id.idOfTextView);
textView.setText(spinner.getSelectedItem().toString());