info.wncwaterfalls.app.SearchLocationFragment.java Source code

Java tutorial

Introduction

Here is the source code for info.wncwaterfalls.app.SearchLocationFragment.java

Source

/*
 * Copyright 2014 WNCOutdoors.info
 * 
 * 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.
 * 
 * SearchLocationFragment.java
 * Fragment which controls the Location search tab, which allows users to
 * find waterfalls based on their location.
 */
package info.wncwaterfalls.app;

import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.InputType;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Spinner;

import info.wncwaterfalls.app.R;

public class SearchLocationFragment extends Fragment implements OnClickListener {

    private final String TAG = "SearchHikeFragment";
    private OnLocationSearchListener sListener;

    private Spinner locationDistanceSpinner;
    private Spinner locationReltoSpinner;

    public interface OnLocationSearchListener {
        public void onLocationSearch(boolean onlyShared, short distance, String relTo, String relToText);
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);

        // Make sure the containing activity implements the search listener interface
        try {
            sListener = (OnLocationSearchListener) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString() + " must implement OnHikeSearchListener");
        }
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View locationSearchFragmentView = inflater.inflate(R.layout.fragment_location_search, container, false);
        setupSpinners(locationSearchFragmentView);

        // Up-set the Find button.
        Button b = (Button) locationSearchFragmentView.findViewById(R.id.search_location_find_button);
        b.setOnClickListener(this);

        return locationSearchFragmentView;
    }

    private void setupSpinners(View view) {
        locationDistanceSpinner = (Spinner) view.findViewById(R.id.search_location_distance_spinner);
        ArrayAdapter<CharSequence> locationDistanceAdapter = ArrayAdapter.createFromResource(getActivity(),
                R.array.location_distance_labels, android.R.layout.simple_spinner_item);
        locationDistanceAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        locationDistanceSpinner.setAdapter(locationDistanceAdapter);

        locationReltoSpinner = (Spinner) view.findViewById(R.id.search_location_relto_spinner);
        ArrayAdapter<CharSequence> locationReltoAdapter = ArrayAdapter.createFromResource(getActivity(),
                R.array.location_relto_labels, android.R.layout.simple_spinner_item);
        locationReltoAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        locationReltoSpinner.setAdapter(locationReltoAdapter);
        locationReltoSpinner.setOnItemSelectedListener(new SpinnerSelectionListener());
    }

    class SpinnerSelectionListener implements OnItemSelectedListener {
        // Listener for the Relto spinner to modify the EditText control appropriately
        public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
            // An item was selected
            EditText searchLocationReltoTextbox = (EditText) getView().findViewById(R.id.search_location_relto_txt);
            String reltoSelected = parent.getItemAtPosition(pos).toString();
            searchLocationReltoTextbox.setText("");
            searchLocationReltoTextbox.setEnabled(true);
            searchLocationReltoTextbox.setFocusable(true);
            searchLocationReltoTextbox.setFocusableInTouchMode(true); // Because just focus isn't enough

            if (reltoSelected.equals("Current Location")) {
                // Disable it
                searchLocationReltoTextbox.setInputType(InputType.TYPE_NULL);
                searchLocationReltoTextbox.setEnabled(false);
                searchLocationReltoTextbox.setFocusable(false);
            } else if (reltoSelected.equals("Address")) {
                searchLocationReltoTextbox.setInputType(InputType.TYPE_TEXT_VARIATION_POSTAL_ADDRESS);
            } else if (reltoSelected.equals("City")) {
                searchLocationReltoTextbox.setInputType(InputType.TYPE_CLASS_TEXT);
            } else if (reltoSelected.equals("Zip")) {
                searchLocationReltoTextbox.setInputType(InputType.TYPE_CLASS_NUMBER);
            }
        }

        public void onNothingSelected(AdapterView<?> parent) {
            // Another interface callback
            //Log.d(TAG, "Somehow, nothing was selected...");
        }
    }

    public void performLocationSearch() {
        // Get the text of the selected item in the Within (Distance) spinner
        Spinner locationDistanceSpinner = (Spinner) getView().findViewById(R.id.search_location_distance_spinner);
        String distanceSelectedStr = locationDistanceSpinner.getSelectedItem().toString();

        // Get the length out of the spinner. TODO: Make this suck less
        short distanceSelected = -1;
        if (!distanceSelectedStr.equals("All")) {
            String[] splitResult = distanceSelectedStr.split(" ");
            distanceSelected = Short.valueOf(splitResult[0]);
        }

        // Get the text of the selected item in the Of (Relto) spinner
        Spinner locationReltoSpinner = (Spinner) getView().findViewById(R.id.search_location_relto_spinner);
        String reltoSelected = locationReltoSpinner.getSelectedItem().toString();

        // Get the text of the entry below Relto spinner
        EditText searchLocationReltoTextbox = (EditText) getView().findViewById(R.id.search_location_relto_txt);
        String locationSearched = searchLocationReltoTextbox.getText().toString();

        // Get the state of the "Only falls I've Shared" checkbox
        CheckBox searchLocationSharedCheckbox = (CheckBox) getView()
                .findViewById(R.id.search_location_shared_checkbox);
        boolean isChecked = searchLocationSharedCheckbox.isChecked();

        sListener.onLocationSearch(isChecked, distanceSelected, reltoSelected, locationSearched);
    }

    @Override
    public void onClick(View button) {
        int buttonId = button.getId();
        if (buttonId == R.id.search_location_find_button) {
            performLocationSearch();
        }
    }

}