Android Open Source - MawaruPenguindrumLiveWallpaper Settings Activity






From Project

Back to project page MawaruPenguindrumLiveWallpaper.

License

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 MawaruPenguindrumLiveWallpaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.nyaa.mawarupenguindrum;
//w w w . j a v a 2 s.c o m
import android.os.Bundle;
import android.preference.PreferenceActivity;

public class SettingsActivity extends PreferenceActivity {
  
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.settings);
  }
}




Java Source Code List

com.nyaa.mawarupenguindrum.LiveWallpaper.java
com.nyaa.mawarupenguindrum.MainActivity.java
com.nyaa.mawarupenguindrum.SettingsActivity.java