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
最赞回答 / 含笑半步癫01
1.注意每一个fragment的布局都要有一个与之对应的继承于Fragment的类。2.关于继承.app.Fragment和.support.v4.app.Fragment的问题:如果要使用前者,那么MainActivity继承Activity即可,然后动态添加时,是getFragmetManager();如果使用后者,那么MainActivity要继承FragActivty,然后动态添加时,是getSupportFragmentManager();fragment导入包的问题。
2018-11-26
最新回答 / qq_Trespassing_2
是这样的,把
super.destroyItem(container, position, object);注释掉就可以了,这是为何呢<...图片...>
2018-10-27
最新回答 / 慕仙1169881
你缺了一行,
dataList = new ArrayList<Map<String, Object>>();在
String[]arr_data={"慕课网1","慕课网2", "慕课网3","慕课网4"};的下面
2018-10-11