android 几种定时器的实现
参考:
Android 倒计时CountDownTimer
https://www.jianshu.com/p/b91ac97930db
android之几种定时器实现
https://blog.csdn.net/generallizhong/article/details/100662373
Android 倒计时CountDownTimer
https://www.jianshu.com/p/b91ac97930db
android之几种定时器实现
https://blog.csdn.net/generallizhong/article/details/100662373
去除标题栏有两种方法:
直接在 MainActivity
中的 onCreate
里面增加
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.hide();
}
AndroidManifest.xml
里面 android:theme
指向的 theme 里面 确保 windowNoTitle = true
并且 android:windowNoTitle = true
就可以无标题。
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">true</item>
有两种方法。
docker ps
docker exec -it instance15 sh
logcat
docker ps
adb connect localhost:5987
logcat
docker ps
docker exec -it instance15 sh
logcat >log.txt
exit
adb connect localhost:5987
adb -s localhost:5987 pull log.txt .
docker logs --since 5m 00363a3b96d6
android 使用中学习到很多新的东西,记录下来防止忘记。