0

我想在 Android -> 设置中添加我的应用程序同步选项。

我已经创建了同步适配器,它运行完美..

但是我的联系人没有添加到我的帐户下。我在“要显示的联系人”下获得了我的帐户,但是当我选择我的帐户时,该帐户中没有联系人。谁能帮帮我...

我已经提到了很多这样这个

但我的问题没有在其中任何一个中讨论..提前谢谢你......

4

1 回答 1

3

你可以试试这个链接来处理你的应用空闲时间

应用程序空闲时间

并且在(取自那个答案)

public class ControlApplication extends Application{

    private static final String TAG=ControlApplication.class.getName();
    private Waiter waiter;  //Thread which controls idle time

    // only lazy initializations here!
    @Override
    public void onCreate(){
        super.onCreate();
        Log.d(TAG, "Starting application"+this.toString());
        waiter=new Waiter(15*60*1000); //15 mins
        waiter.start();
        setContentView(R.layout.blackscreen);
    }

    public void touch(){
        waiter.touch();
    }
}

你可以调用一个背景为黑色的xml文件

编辑

黑屏.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    tools:context=".MainActivity">
于 2013-07-17T10:51:26.333 回答