240 发简信
IP属地:湖北
  • Android 更改EditText下划线的颜色样式

    套用theme,设置好theme后套用既能更改下环线颜色 @color/indigo @color/pink <EditText andro...

  • splash页面全屏的方法

    单独为splash页面设置一个全屏theme true true

  • popwindow完全遮盖顶部状态栏

    private PopupWindowpopWindow; private ViewpopView; private void openPopW...

  • scrollview怎么滑动到顶部

    -----实测第二种方法最无脑最管用------ 有时候使用ScrollView,里边控件比较多的时候,打开界面,会滑到底部。如果要设置滑动到顶...

  • 遇到json中有class之类的关键字怎么解析

    @SerializedName("class") private List classs; 自定义一个名字classs,然后再代码上加一行“@...

  • 高斯模糊

    原文地址:https://github.com/zuiwuyuan/FastBlur_VoiceChat private int scaleRa...

  • 点击事件必须点两次才能生效的原因

    android:focusable="true"android:focusableInTouchMode="true"这样写就必须点两次才能响应...

  • sourcetree用起来真麻烦

    sourcetree用起来真麻烦,头天还用的好好的,第二天就定位不到代码位置。又没有个定位历史之类的功能,这要是QQ,早没人用了

  • substring(0,10)

    substring(0,10)从下标0开始,截至到第10位,不包括第10位的字符串截取出来。