如何在我的应用中每天更新内容而不要求用户每天下载和更新?

时间:2017-02-06 20:56:14

标签: android

我的应用程序是一种信息应用程序,所以我必须定期更新它。但是,如果我这样做,那么用户定期下载或更新它将不方便。如何在没有用户许可的情况下每天更新它?

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="1.LUNCH- Rajma Chawl,Beans,Halwa,Raita,Roti."//want to update this section
    android:textSize="25dp"
    android:id="@+id/textView2"
    android:textColor="#ffffff"
    android:layout_below="@+id/textView"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_marginTop="58dp" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="2.Dinner- Rajma Chawl,Beans,Halwa,Raita,Roti."//want to update this section
    android:textSize="25dp"
    android:id="@+id/textView3"
    android:textColor="#ffffff"
    android:layout_below="@+id/textView2"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_marginTop="58dp" />

我必须定期更新此XML文件。

1 个答案:

答案 0 :(得分:0)

你可以进行自动更新,你必须在后台进程中做更新..做服务。做一些声明,每天检查,然后在后台进行服务。