Created
June 23, 2012 00:30
-
-
Save LuckOfWise/2975981 to your computer and use it in GitHub Desktop.
[Android]アカウント設定画面の呼び出し
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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