Skip to content

Instantly share code, notes, and snippets.

@LuckOfWise
Created June 23, 2012 00:30
Show Gist options
  • Save LuckOfWise/2975981 to your computer and use it in GitHub Desktop.
Save LuckOfWise/2975981 to your computer and use it in GitHub Desktop.
[Android]アカウント設定画面の呼び出し
package com.luckofwise.accountcall;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.provider.Settings;
public class AccountCallActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
startActivity(new Intent(Settings.ACTION_SYNC_SETTINGS));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment