Android Open Source - iwashi3d Setting Activity






From Project

Back to project page iwashi3d.

License

The source code is released under:

Apache License

If you think the Android project iwashi3d 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

/*
 * Copyright (C) 2011 QSDN,Inc.//from  w w w  . java 2s  . com
 * Copyright (C) 2011 Atsushi Konno
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package jp.co.qsdn.android.iwashi3d.setting;

import android.content.Context;
import android.content.Intent;
import android.content.res.Resources;

import android.os.Bundle;

import android.preference.CheckBoxPreference;
import android.preference.Preference.OnPreferenceChangeListener;
import android.preference.Preference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceManager;

import android.util.Log;

import android.view.View;

import android.widget.Button;

import com.google.ads.AdRequest;
import com.google.ads.AdView;

import jp.co.qsdn.android.iwashi3d.R;


public class SettingActivity extends PreferenceActivity {
  private static final String TAG = SettingActivity.class.getName();
  private static final boolean debug = false;

  @Override 
  protected void onResume() {
    super.onResume();
    AdView adGoogle = (AdView)this.findViewById(R.id.ad);
    AdRequest adr = new AdRequest();
    adGoogle.loadAd(adr);
  }
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.setting);
    addPreferencesFromResource(R.xml.setting);


    {
      boolean b = Prefs.getInstance(this).getIwashiBoids();
  
      Resources res = getResources();
  
      String key = res.getString(R.string.key_preference_iwashi_boids);
      CheckBoxPreference pref = (CheckBoxPreference)findPreference(key);
      final Prefs prefs = Prefs.getInstance(this);
      pref.setOnPreferenceChangeListener(
        new OnPreferenceChangeListener() {
          @Override
          public boolean onPreferenceChange(Preference preference, Object newValue) {
            Boolean nv = (Boolean)newValue;
            prefs.setIwashiBoids(nv);
            ((CheckBoxPreference) preference).setChecked((Boolean)newValue);
            return false;
          }
        });
      pref.setChecked(b);
    }
    {
      boolean b = Prefs.getInstance(this).getCameraMode();
  
      Resources res = getResources();
  
      String key = res.getString(R.string.key_preference_camera_mode);
      CheckBoxPreference pref = (CheckBoxPreference)findPreference(key);
      final Prefs prefs = Prefs.getInstance(this);
      pref.setOnPreferenceChangeListener(
        new OnPreferenceChangeListener() {
          @Override
          public boolean onPreferenceChange(Preference preference, Object newValue) {
            Boolean nv = (Boolean)newValue;
            prefs.setCameraMode(nv);
            ((CheckBoxPreference) preference).setChecked((Boolean)newValue);
            return false;
          }
        });
      pref.setChecked(b);
    }
    {
      final SettingActivity __this = this;
      Button button = (Button)findViewById(R.id.preference_button_ok);
      button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
          Button button = (Button) v;
          __this.finish();
        }
      });
    }
    {
      Button button = (Button)findViewById(R.id.preference_button_about);
      button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
          Intent intent = new Intent(getApplicationContext(),AboutActivity.class);
          startActivity(intent); 
        }
      });
    }
  }

  @Override
  protected void onDestroy() {
    if (debug) Log.d(TAG, "start onDestroy");
    boolean b = getPreferenceManager().getSharedPreferences().getBoolean(Prefs.KEY_IWASHI_BOIDS, Prefs.DEFAULT_IWASHI_BOIDS);
    Prefs.getInstance(this).setIwashiBoids(b);
    b = getPreferenceManager().getSharedPreferences().getBoolean(Prefs.KEY_CAMERA_MODE, Prefs.DEFAULT_CAMERA_MODE);
    Prefs.getInstance(this).setCameraMode(b);
    Prefs.getInstance(this).setUpdateSetting(true);
    super.onDestroy();
    if (debug) Log.d(TAG, "end onDestroy");
  }


  public static int getIwashiCount(Context context) {
    return Prefs.getInstance(context).getIwashiCount();
  }

  public static float getIwashiSpeed(Context context) {
    return Prefs.getInstance(context).getIwashiSpeed();
  }

  public static void setIwashiCount(Context context, int iwashiCount) {
    Prefs.getInstance(context).setIwashiCount(iwashiCount);
  }

  public static void setIwashiSpeed(Context context, int iwashiSpeed) {
    Prefs.getInstance(context).setIwashiSpeed(iwashiSpeed);
  }
}




Java Source Code List

jp.co.qsdn.android.iwashi3d.Aquarium.java
jp.co.qsdn.android.iwashi3d.AtlantisBroadcastReceiver.java
jp.co.qsdn.android.iwashi3d.AtlantisNotification.java
jp.co.qsdn.android.iwashi3d.AtlantisService.java
jp.co.qsdn.android.iwashi3d.BaitManager.java
jp.co.qsdn.android.iwashi3d.Bait.java
jp.co.qsdn.android.iwashi3d.GLRenderer.java
jp.co.qsdn.android.iwashi3d.model.Background.java
jp.co.qsdn.android.iwashi3d.model.Ground.java
jp.co.qsdn.android.iwashi3d.model.IwashiData.java
jp.co.qsdn.android.iwashi3d.model.Iwashi.java
jp.co.qsdn.android.iwashi3d.model.Model.java
jp.co.qsdn.android.iwashi3d.model.Wave.java
jp.co.qsdn.android.iwashi3d.setting.AboutActivity.java
jp.co.qsdn.android.iwashi3d.setting.ChangeCameraDialog.java
jp.co.qsdn.android.iwashi3d.setting.IwashiCountDialog.java
jp.co.qsdn.android.iwashi3d.setting.IwashiSpeedDialog.java
jp.co.qsdn.android.iwashi3d.setting.Prefs.java
jp.co.qsdn.android.iwashi3d.setting.SettingActivity.java
jp.co.qsdn.android.iwashi3d.tls.BitmapContextImpl.java
jp.co.qsdn.android.iwashi3d.tls.BitmapContext.java
jp.co.qsdn.android.iwashi3d.util.CoordUtil.java
jp.co.qsdn.android.iwashi3d.util.MatrixStack.java
jp.co.qsdn.android.iwashi3d.util.MatrixTrackingGL.java