Android Open Source - SpartanTimeLapseRecorder Icon Array Adapter






From Project

Back to project page SpartanTimeLapseRecorder.

License

The source code is released under:

GNU General Public License

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

/*
 * Spartan Time Lapse Recorder - Minimalistic android time lapse recording app
 * Copyright (C) 2014  Andreas Rohner/*from ww  w .j a v a2  s  .co m*/
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package at.andreasrohner.spartantimelapserec.preference;

import android.app.Activity;
import android.content.Context;
import android.graphics.Color;
import android.os.Build;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.CheckedTextView;
import android.widget.ImageView;
import at.andreasrohner.spartantimelapserec.R;

public class IconArrayAdapter extends ArrayAdapter<CharSequence> {
  private int mIndex;
  private String[] mImagePaths;

  public IconArrayAdapter(Context context, int textViewResourceId,
      CharSequence[] objects, String[] mImagePaths, int index) {
    super(context, textViewResourceId, objects);

    this.mIndex = index;
    this.mImagePaths = mImagePaths;
  }

  @Override
  public View getView(int position, View convertView, ViewGroup parent) {
    LayoutInflater inflater = ((Activity) getContext()).getLayoutInflater();
    View view = inflater.inflate(R.layout.dialog_image_list_preference,
        parent, false);

    ImageView imageView = (ImageView) view
        .findViewById(R.id.dialog_image_list_preference_image);
    String name = mImagePaths[position];
    name = name.substring(name.lastIndexOf('/') + 1, name.lastIndexOf('.'));

    int resId = getContext().getResources().getIdentifier(name, "drawable",
        getContext().getPackageName());
    imageView.setImageResource(resId);

    CheckedTextView checkedTextView = (CheckedTextView) view
        .findViewById(R.id.dialog_image_list_preference_check);

    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) {
      checkedTextView.setTextColor(Color.BLACK);
      imageView.setBackgroundColor(Color.DKGRAY);
    }

    checkedTextView.setText(getItem(position));

    if (position == mIndex) {
      checkedTextView.setChecked(true);
    }

    return view;
  }
}




Java Source Code List

at.andreasrohner.spartantimelapserec.BackgroundService.java
at.andreasrohner.spartantimelapserec.DeviceStatusReceiver.java
at.andreasrohner.spartantimelapserec.MainActivity.java
at.andreasrohner.spartantimelapserec.PowerSavingReceiver.java
at.andreasrohner.spartantimelapserec.PreviewActivity.java
at.andreasrohner.spartantimelapserec.ScheduleReceiver.java
at.andreasrohner.spartantimelapserec.SettingsActivity.java
at.andreasrohner.spartantimelapserec.SettingsCommon.java
at.andreasrohner.spartantimelapserec.SettingsFragment.java
at.andreasrohner.spartantimelapserec.data.RecMode.java
at.andreasrohner.spartantimelapserec.data.RecSettings.java
at.andreasrohner.spartantimelapserec.preference.DateTimePreference.java
at.andreasrohner.spartantimelapserec.preference.IconArrayAdapter.java
at.andreasrohner.spartantimelapserec.preference.IconListPreference.java
at.andreasrohner.spartantimelapserec.preference.NoKBEditTextPreference.java
at.andreasrohner.spartantimelapserec.preference.SeekBarPreference.java
at.andreasrohner.spartantimelapserec.recorder.ImageRecorder.java
at.andreasrohner.spartantimelapserec.recorder.PowerSavingImageRecorder.java
at.andreasrohner.spartantimelapserec.recorder.Recorder.java
at.andreasrohner.spartantimelapserec.recorder.VideoRecorder.java
at.andreasrohner.spartantimelapserec.recorder.VideoTimeLapseRecorder.java
at.andreasrohner.spartantimelapserec.sensor.CameraSettings.java
at.andreasrohner.spartantimelapserec.sensor.MuteShutter.java
at.andreasrohner.spartantimelapserec.sensor.OrientationSensor.java