开发者

Android daily update text app

I'm currently trying to think of th开发者_StackOverflow中文版e best way to program an app which simply has text and images that update every day to different content. Would the best way to do this be to store all of the items in an array and then call upon each according to the phone's clock? Or is there a better or simpler way of doing this?

If you need to know I'm using Eclipse to program the app.


You could have the app check for updates each day or you could make a mobile website and use a webview to display the site ,and just update the site daily


Since you are using text and images, I would recommend storing them in your app's SharedPreferences. These keep data stored that your app can easily access to view or change. You can store text and bitmaps easily. For text:

SharedPreferences prefs = getSharedPreferences("MySharedPreferences", Activity.MODE_PRIVATE);
SharedPreferences.Editor preferences = prefs.edit();
String firstString = prefs.getString("MyFirstString");
//check if firstString has changed on the server
//for example, set a new String that you retrieve from the server to firstStringMaybe
if (firstString != firstStringMaybe) { //meaning you need to update firstString
    prefs.putString("MyFirstString", firstStringMaybe);
    prefs.commit();
}

Bitmaps storage is much more complicated, because you need to first Serialize the bitmap, then store it as a String. This probably means creating a new class that contains the bitmap object and implements Serializable. There are many examples available for how to do this:

http://www.johnwordsworth.com/2011/06/serializing-and-de-serializing-android-graphics-bitmap/

android how to save a bitmap - buggy code

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜