随笔(二十五)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_27073205/article/details/82115333

1.
使用return结束一个方法

https://blog.csdn.net/u012843873/article/details/71077808
return结束本方法,上一级方法并不会结束
2.Animator.AnimatorListener
https://www.jianshu.com/p/65621fb06bef
3.
教你如何拿别人APP中的数据 https://www.jianshu.com/p/bc02c809772a

4.
INSTALL_FAILED_ALREADY_EXISTS

https://blog.csdn.net/ameryzhu/article/details/42645393
adb install -r 这里的r是reinstall 的缩写。顺便学习一下adb install的相关参数。
5.
Android模拟器安装APP出现INSTALL_FAILED_NO_MATCHING_ABIS错误解决方案

https://www.jb51.net/article/99714.htm
6.场景:横竖屏加载不通的title,title布局具有相同的id
使用viewstub
https://blog.csdn.net/u012233285/article/details/52818308
7.自定义toast
Toast toast = new Toast(getActivity());
TextView textView = new TextView(getActivity());
textView.setBackgroundResource(R.drawable.toast_blue_bg);
textView.setText(“波动空间=振幅/保证金比例*100%”);
textView.setGravity(Gravity.CENTER);
textView.setPadding(12,6,12,6);
toast.setView(textView);
toast.show();
8.解决沉浸式状态栏输入法弹起把状态栏顶上去的问题
https://blog.csdn.net/xiaoxiaocaizi123/article/details/74935758
9.https://blog.csdn.net/chencehnggq/article/details/23736869
https://www.cnblogs.com/franksunny/p/3714442.html

猜你喜欢

转载自blog.csdn.net/qq_27073205/article/details/82115333