我正在尝试制作一个基于标签的应用程序,这是一个学校日程安排应用程序。
我在activitiy_main.xml中使用tabhost来使用所有数据(设置选项卡名称,元素等)。
我想要做的是有一个微调器(位于我的tabhost的tab3中)指示它下面显示的选项。
我想要显示多个选项。
这是tab3的XML布局,位于我的activity_main_xml:
中`
<TextView
android:id="@+id/labelAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/add"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Spinner
android:id="@+id/addDropDown"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:entries="@array/type_array" />
<Button
android:id="@+id/StartTimeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addStartTime" />
<TextView
android:id="@+id/startTimeLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addStartTime" />
<TimePicker
android:id="@+id/startTimePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/endTimeLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addEndTime" />
<TimePicker
android:id="@+id/endTimePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/addRepeatQ"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addRepeatQ" />
<RadioGroup
android:id="@+id/repeatRadioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/addRepeatN"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/addRepeatN" />
<RadioButton
android:id="@+id/addRepeatY"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addRepeatY" />
</RadioGroup>
<Button
android:id="@+id/addNextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addNext" />
</LinearLayout>`
我想制作某些项目,特别是startTimeLabel,StartTimeButton,endTimeLabel,endTimeButton ONLY仅在我的微调器的某个元素被选中时显示(在这种情况下,所选项目的标题为“class”)。
有关如何开始构建我的.java的任何帮助?我是Android编程的新手,但有java,html,php,sql和Visual Studio的经验。
答案 0 :(得分:0)
urSpinner.setOnItemSelectedListener(new OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> arg0, View arg1,
int arg2, long arg3)
{
//write your code here what you want
change visibility of your Views(buttons,textviews) etc
}
public void onNothingSelected(AdapterView<?> arg0) {
}
});
如果你明白了,请将其作为答案