咕咚

Results 102 issues of 咕咚

after setOnItemContentClickListener for IndexableRecyclerView, but in onItemClick() method, I can not get any callback. ```java List arrays = new ArrayList(); CityBean bean = new CityBean(); bean.cityname = "定位"; arrays.add(bean); indexLayout.addHeaderAdapter(new...

我怎么没看到呢?另外,如果用到了我的项目,请加一个跳转链接!

gpvPasswordType 设置为 textVisiblePassword 无效

Introduction: 咕咚同学的个人博客 Address: https://gudong.site RSS feed: [RSS url](https://gudong.site/static/xml/rss.xml) tags: 独立开发者;Android;篮球爱好者

blog

能上传更新日志吗

不论你用心、认真与否,人总在向前走,严谨的说是时间在向前走。 自己一直以来都是漫无目的,直到现在,我对未来也很迷糊,我不知道 5 年后会干嘛。这让我很恐惧。 内心深处,我觉得需要这样一个灯塔去指引你,否则日子一天天过,但是却没有目的。一旦随心所欲,没有目的,就很容易失去方向。 那么五年内,我要做什么?

```java public class Base64Utils { private Base64Utils() { } public static byte[] decode(String in) { // Ignore trailing '=' padding and whitespace from the input. int limit = in.length(); for...

原理:在一个有序的数组中,先从中间找,如果中间元素大于目标值,说明目标值在中间元素靠左,这时设置 end 位置为 middle-1。 反之,如果中间元素小于目标值,说明目标值在中间元素靠右,这时 start 位置设为 middle +1,如果相等,则表示找到了目标值。 ```java static int bsearchWithoutRecursion(int a[], int key) { int start = 0; int end = a.length-1; while (startkey){ end = mid-1;...

基本算法