Back to project page Test-SimpleTwitterClient.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project Test-SimpleTwitterClient listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.Twitter_Android.AppActivity; /*w ww . ja v a 2 s . c o m*/ import android.app.Activity; import android.os.Bundle; import com.example.Twitter_Android.Fragments.Preferences.SettingsFragment; import com.example.Twitter_Android.R; public class SettingsActivity extends Activity { public static final String ALLOW_IMAGE_LOADING = "key_pref_images_loading"; public static final String ALLOWED_TWEET_COUNT = "key_pref_number_of_tweets"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getFragmentManager() .beginTransaction() .setCustomAnimations(R.animator.animator_appearance, R.animator.animator_disappear) .replace(android.R.id.content, new SettingsFragment()).commit(); } }