我想在Android中同步选项中添加我的应用程序 - >设置。
我创建了同步适配器,它的工作非常完美..
但我的联系人未添加到我的帐户下面.. 我的帐户位于"联系人以显示"但是当我选择我的帐户时,该帐户中没有联系人。 任何人都可以帮助我...
但是我的问题没有在任何一个中讨论过.. 提前谢谢你......
答案 0 :(得分:3)
您可以尝试使用此链接来处理应用空闲时间
and in(取自该答案)
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文件修改强>
blackscreen.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">