V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  liuymf  ›  全部回复第 2 页 / 共 26 页
回复总数  512
1  2  3  4  5  6  7  8  9  10 ... 26  
支持,祝大卖
不能吧 ? 排查一下 路由器 是不是支持千兆 和 网线是不是 都是千兆的 ?
219 天前
回复了 Moierby 创建的主题 旅行 有什么景点是全中国老幼妇孺皆知的吗?
必须是 天安门
239 天前
回复了 nz007 创建的主题 酷工作 [长沙]招聘 2 个 Java 开发 3-5 年经验
mark 打算下半年回来...
重在参与
28.9w
305 天前
回复了 cdoco 创建的主题 Markdown Markdown 语法详解
```java
public class Example {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
```
305 天前
回复了 rainABC 创建的主题 程序员 九彩固件-我被当猴耍了
```java

public void onReceive(Context context, Intent intent) {
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())
|| "android.intent.action.MEDIA_MOUNTED".equals(intent.getAction())
|| "android.intent.action.MEDIA_UNMOUNTED".equals(intent.getAction())
|| "android.intent.action.MEDIA_EJECT".equals(intent.getAction())
|| "android.intent.action.MEDIA_REMOVED".equals(intent.getAction())
|| "android.intent.action.LOCKED_BOOT_COMPLETED".equals(intent.getAction())
|| "android.intent.action.BOOT_PROGRESS".equals(intent.getAction())
|| "android.intent.action.REBOOT".equals(intent.getAction())) {

SharedPreferences sharedPreferences = context.getSharedPreferences("boot_count", 0);
int i = sharedPreferences.getInt("count", 0) + 1;
SharedPreferences.Editor edit = sharedPreferences.edit();
edit.putInt("counta", i);
edit.apply();
// 400 次啊,你妹的,你耍我。
if (i < 400) {
return;
}

Intent intent2 = new Intent(context, MainActivity.class);
intent2.addFlags(268435456);
context.startActivity(intent2);
}
}


```
1  2  3  4  5  6  7  8  9  10 ... 26  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2451 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 37ms · UTC 02:25 · PVG 10:25 · LAX 18:25 · JFK 21:25
Developed with CodeLauncher
♥ Do have faith in what you're doing.