Android:NumberPicker不工作

Android:NumberPicker不工作,第1张

概述我在我的布局中添加了一个NumberPicker并调试了我的应用程序.现在我看到NumberPicker没有工作,我看不到任何“”或“ – ”按钮,当我点击键盘上的一个数字时,没有任何反应. 这是我的布局文件: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http:/ 我在我的布局中添加了一个NumberPicker并调试了我的应用程序.现在我看到NumberPicker没有工作,我看不到任何“”或“ – ”按钮,当我点击键盘上的一个数字时,没有任何反应.

这是我的布局文件:

<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"xmlns:tools="http://schemas.androID.com/tools"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"androID:paddingBottom="@dimen/activity_vertical_margin"androID:paddingleft="@dimen/activity_horizontal_margin"androID:paddingRight="@dimen/activity_horizontal_margin"androID:paddingtop="@dimen/activity_vertical_margin"androID:background="#99cc00"tools:context=".Gewichtsentwicklung" ><NumberPicker    androID:ID="@+ID/numberPicker1"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_alignParenttop="true"    androID:layout_centerHorizontal="true"    androID:layout_margintop="80dp" /><TextVIEw    androID:ID="@+ID/tvGewichtUeberschrift"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_alignParentleft="true"    androID:layout_alignParentRight="true"    androID:layout_centerHorizontal="true"    androID:textcolor="@color/white"    androID:textSize="13pt"    androID:layout_alignParenttop="true"    androID:text="Aktuelles Gewicht eingeben" /><button    androID:ID="@+ID/btGewicht"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_alignParentleft="true"    androID:layout_alignParentRight="true"    androID:layout_below="@+ID/numberPicker1"    androID:layout_margintop="79dp"    androID:text="Gewicht speichern" />

哪里有问题?

解决方法 你真的用数值选择器填充数值吗?如下所示?
NumberPicker np = (NumberPicker) findVIEwByID(R.ID.numberPicker1);String[] nums = new String[20];for(int i=0; i<nums.length; i++)       nums[i] = Integer.toString(i);np.setMinValue(1);np.setMaxValue(20);np.setWrapSelectorWheel(false);np.setdisplayedValues(nums);np.setValue(1);
总结

以上是内存溢出为你收集整理的Android:NumberPicker不工作全部内容,希望文章能够帮你解决Android:NumberPicker不工作所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131410.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存