TOAST可以随机显示来自在线资源的文本吗?

时间:2016-11-30 09:33:43

标签: android json android-widget toast android-toast

我只是想知道吐司活动是否可以随机打印出来自在线数据库(谷歌电子表格或谷歌文档)的文本?使用JSON可能吗?

这是我的代码,现在它只是显示随机文本,但是来自我在代码中提供的银行......

String[] toastMessages = new String[] {"text1", "text 2", "text 3", "text 4"};
                int randomMsgIndex = randomnize.nextInt(toastMessages.length);
                Toast.makeText(getApplicationContext(), toastMessages[randomMsgIndex], Toast.LENGTH_LONG).show();
            }

非常感谢!

1 个答案:

答案 0 :(得分:0)

是的,您可以使用吐司显示任何字符串!!