好的,所以我只是将我的TimePickerDialog
切换到我正在处理的活动中直接看到的TimePicker
小部件,因为客户的需求。
问题是当我按下TimePicker
上的任何箭头时,我得到一个NullPointerException。
只是为了澄清一下,除了活动的TimePicker
方法中的这一行之外,onCreate()
没有附加任何代码:
((TimePicker) findViewById(R.id.time_picker)).setIs24HourView(true);
我在Google论坛上发现this post有关此问题,但帮助不大。
Here's my error log,我遗憾地认为这不会有太多帮助。
只有在ICS(Android 4.0 +)中进行测试时才会出现此问题。有没有人能够解决这个问题?
答案 0 :(得分:0)
刚刚写了一个示例应用程序,在Galaxy SIII(4.0)中找不到错误:
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.TimePicker;
import android.widget.TimePicker.OnTimeChangedListener;
public class TimePickerTestActivity extends Activity implements OnTimeChangedListener{
private TimePicker tpTime = null;
private TextView tvTime = null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tvTime = (TextView)this.findViewById(R.id.tv_time);
tpTime = (TimePicker)this.findViewById(R.id.tp_time);
tpTime.setIs24HourView(Boolean.TRUE);
tpTime.setOnTimeChangedListener(this);
}
public void onTimeChanged(TimePicker tp, final int hrOfDay, final int min) {
if(tp.equals(tpTime)){
tvTime.post(new Runnable(){
public void run() {
tvTime.setText(hrOfDay+":"+min);
}
});
}
}
}
布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TimePicker android:id="@+id/tp_time"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView android:id="@+id/tv_time"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
仅供参考:http://developer.android.com/reference/android/widget/TimePicker.html