我正在使用Eclipse开发一个使用datepicker的Android表单。我也使用actionbarsherlock。 它显示错误的东西。 另一个问题是,微调器不会显示像Ñ这样的特殊字符并隐藏整个单词。
下面的图片和XML。
https://dl.dropbox.com/u/6955865/picker.png
这是我的xml布局代码。
<LinearLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:context=".BuscarTarea" >
<Spinner
android:id="@+id/spvina"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Spinner
android:id="@+id/sptarea"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Spinner
android:id="@+id/spproducto"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<DatePicker
android:id="@+id/datePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/buscar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onClick"
android:text="Buscar" />
</LinearLayout>
答案 0 :(得分:0)
尝试使用datepicker对话框而不是嵌入选择器到您的活动/片段布局中。 http://developer.android.com/guide/topics/ui/controls/pickers.html
您如何为您提供数据微调器。也许你读错了这个数据?