如何使用新图像和文本每周更新我的应用程序?

时间:2017-08-09 13:09:07

标签: android

我需要的是每周都可以在我的应用中更改图片和一些文字。用户无法仅对我进行更改。我看到的每个地方都说不同的东西。它说我需要一个服务器然后在其他地方它说我需要创建一个sql数据库。我是Android开发新手,我很困惑任何帮助将非常感激。

4 个答案:

答案 0 :(得分:2)

你可以通过多种方式做到这一点。简单的方法是发送 FCM 消息。从Firebase控制台发送图片网址文字。然后,您可以更改图像和文本,而无需创建数据库和服务器。

如果您需要有关 FCM 的更多信息,请浏览此链接https://firebase.google.com/docs/cloud-messaging/android/client

答案 1 :(得分:1)

您可以通过多种方式实现上述功能

1)You can use Push notification (GCM/FCM) and with use of notification you can update Image and text.
2)You can use JobScheduler and schedule for every day and call API by which you can get image and text details.

答案 2 :(得分:0)

试试这个:

Calendar c = Calendar.getInstance();
c.setTime(yourdate); // yourdate is an object of type Date

int dayOfWeek = c.get(Calendar.DAY_OF_WEEK); 

if(dayOfWeek==2){
   //Do stuff

}

或者你可以这样做:

if (Calendar.MONDAY == dayOfWeek) {
        //Do stuff
}

所以这会得到当周的当天,并检查是否是moday,如果是,你做了你想要的。

答案 3 :(得分:-1)

如果您有云数据库,并且指的是

中的
if (Calendar.MONDAY == dayOfWeek) {
        //weeklypicture.png
}

您可以更改数据库中的weeklypicture.png,它也会在应用中更改。 查看firebase以获取简单示例。