有没有办法强制微调器下拉菜单直接显示在按钮单击下?现在,当我点击微调器时,它会将焦点更改为屏幕中间。
我的微调器的基本设置如下:
<Spinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/spinner1"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"/>
答案 0 :(得分:0)
没关系。我使用了以下内容并使其正常工作:
@Override
public void onLocationChanged(Location currentLocation) {
if (null == mLastLocationReading || mLastLocationReading.getTime() > currentLocation.getTime()){
mLastLocationReading = currentLocation;
enabler=true;
}
if (currentLocation.getTime() > mLastLocationReading.getTime())
mLocationManager.removeUpdates(this);
}