new DatePickerDialog(this, new OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
setTitle(year+"-"+(monthOfYear+1)+"-"+dayOfMonth);
}
},year,cal.get(Calendar.MONTH),day).show();
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
setTitle(year+"-"+(monthOfYear+1)+"-"+dayOfMonth);
}
},year,cal.get(Calendar.MONTH),day).show();
2019-01-23
真机测试写了ScrollView中的listView进行监听的时候监听不到滚动事件。去掉ScrollView就好了,但是界面不能滚动了呀!IDE是AS
2019-01-17
只要写了setwebviewclient就是在webview中打开,shouldOverridUrlLoading方法返回结果不同对url(重定向)请求处理不同。
2019-01-10
这一课老师讲错啦。。。会报nullpointexception,把list的对象new在获取数据源的方法里就可以解决。。
2018-12-02