Android Open Source - DroidGlove Settings






From Project

Back to project page DroidGlove.

License

The source code is released under:

Copyright (c) 2014, cubic9com All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Re...

If you think the Android project DroidGlove 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.cubic9.android.droidglove;
/* w  w  w  .  j a va  2 s . co  m*/
import com.cubic9.android.droidglove.R;

import android.os.Bundle;
import android.preference.PreferenceActivity;

/**
 * Setting preference class of DroidGlove.
 * 
 * Copyright (C) 2014, cubic9com All rights reserved.
 * This code is licensed under the BSD 3-Clause license.
 * See file LICENSE for more information.
 * 
 * @author cubic9com
 */
public class Settings extends PreferenceActivity {

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.pref);
  }
}




Java Source Code List

com.cubic9.android.droidglove.Main.java
com.cubic9.android.droidglove.Settings.java