我很困惑我应该如何从链接中的数据(可以添加到/删除)获取似乎在集合中的信息。我试图获得'成员'的大小,如果大小为零,执行一些代码。 https://pastebin.com/4dN513UQ 这是数据的一个例子 -
Place and `Intent-filter` tag in your intended entry activity in AndroidManifest.xml file like this
```
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
```
If your initial activity is a place, start the next activity in your runnable thread as shown below.
```
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
Intent(SplashActivity.this,ACTIVITY_TO_GO_TO.class);
startActivity(mainIntent);
finish();
}
}, TIME_OUT_NOW);
```
You can then move to anywhere else in ACTIVITY_TO_GO_TO activity.
答案 0 :(得分:0)
很难帮助你,因为你只向我们展示了语音频道的对象结构,但我们不知道members
的样子或者你想用它们做什么。
这看起来像Discord API,因此查看检索此数据的实际代码会很有用。大概你正在使用某种客户端库(例如在NodeJS或PHP中)来发出API请求。