com.trupti_prajapati.retailapp.view.fragment.SettingsFragment.java Source code

Java tutorial

Introduction

Here is the source code for com.trupti_prajapati.retailapp.view.fragment.SettingsFragment.java

Source

/*
 * Copyright 2013 Priboi Tiberiu
 * Copyright 2013 The Android Open Source Project
 *
 * 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 com.trupti_prajapati.retailapp.view.fragment;

import android.content.Intent;
import android.graphics.Color;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.view.GravityCompat;
import android.support.v7.widget.Toolbar;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;

import com.trupti_prajapati.retailapp.R;
import com.trupti_prajapati.retailapp.util.PreferenceHelper;
import com.trupti_prajapati.retailapp.util.Utils;
import com.trupti_prajapati.retailapp.util.Utils.AnimationType;
import com.trupti_prajapati.retailapp.view.activities.ECartHomeActivity;

// TODO: Auto-generated Javadoc
/**
 * Fragment that appears in the "content_frame", shows a animal.
 */
public class SettingsFragment extends Fragment {

    private TextView submitLog;
    private Toolbar mToolbar;

    /**
     * Instantiates a new settings fragment.
     */
    public SettingsFragment() {
        // Empty constructor required for fragment subclasses
    }

    /*
     * (non-Javadoc)
     * 
     * @see
     * android.support.v4.app.Fragment#onCreateView(android.view.LayoutInflater,
     * android.view.ViewGroup, android.os.Bundle)
     */
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.frag_aboutus, container, false);

        getActivity().setTitle("About App");

        mToolbar = (Toolbar) rootView.findViewById(R.id.htab_toolbar);
        if (mToolbar != null) {
            ((ECartHomeActivity) getActivity()).setSupportActionBar(mToolbar);
        }

        if (mToolbar != null) {
            ((ECartHomeActivity) getActivity()).getSupportActionBar().setDisplayHomeAsUpEnabled(true);

            mToolbar.setNavigationIcon(R.drawable.ic_drawer);

        }

        mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                ((ECartHomeActivity) getActivity()).getmDrawerLayout().openDrawer(GravityCompat.START);
            }
        });

        mToolbar.setTitleTextColor(Color.WHITE);

        submitLog = (TextView) rootView.findViewById(R.id.submit_log_txt);

        if (PreferenceHelper.getPrefernceHelperInstace().getBoolean(getActivity(), PreferenceHelper.SUBMIT_LOGS,
                true)) {

            submitLog.setText("Disable");
        } else {
            submitLog.setText("Enable");
        }

        rootView.findViewById(R.id.submit_log).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (PreferenceHelper.getPrefernceHelperInstace().getBoolean(getActivity(),
                        PreferenceHelper.SUBMIT_LOGS, true)) {
                    PreferenceHelper.getPrefernceHelperInstace().setBoolean(getActivity(),
                            PreferenceHelper.SUBMIT_LOGS, false);

                    submitLog.setText("Disable");
                } else {
                    PreferenceHelper.getPrefernceHelperInstace().setBoolean(getActivity(),
                            PreferenceHelper.SUBMIT_LOGS, true);
                    submitLog.setText("Enable");
                }

            }
        });

        rootView.setFocusableInTouchMode(true);
        rootView.requestFocus();
        rootView.setOnKeyListener(new View.OnKeyListener() {

            @Override
            public boolean onKey(View v, int keyCode, KeyEvent event) {

                if (event.getAction() == KeyEvent.ACTION_UP && keyCode == KeyEvent.KEYCODE_BACK) {

                    Utils.switchContent(R.id.frag_container, Utils.HOME_FRAGMENT,
                            ((ECartHomeActivity) (getContext())), AnimationType.SLIDE_UP);

                }
                return true;
            }
        });

        rootView.findViewById(R.id.picasso).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW,
                        Uri.parse("https://github.com/square/picasso"));
                startActivity(browserIntent);

            }
        });

        rootView.findViewById(R.id.acra).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/ACRA/acra"));
                startActivity(browserIntent);

            }
        });

        rootView.findViewById(R.id.pull_zoom_view).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW,
                        Uri.parse("https://github.com/Frank-Zhu/PullZoomView"));
                startActivity(browserIntent);

            }
        });

        rootView.findViewById(R.id.list_buddies).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW,
                        Uri.parse("https://github.com/jpardogo/ListBuddies"));
                startActivity(browserIntent);

            }
        });

        rootView.findViewById(R.id.list_jazzy).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW,
                        Uri.parse("https://github.com/twotoasters/JazzyListView"));
                startActivity(browserIntent);

            }
        });

        rootView.findViewById(R.id.email_dev).setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
                emailIntent.setType("text/plain");
                emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,
                        new String[] { "serveroverloadofficial@gmail.com" });
                emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Hello There");
                emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Add Message here");

                emailIntent.setType("message/rfc822");

                try {
                    startActivity(Intent.createChooser(emailIntent, "Send email using..."));
                } catch (android.content.ActivityNotFoundException ex) {
                    Toast.makeText(getActivity(), "No email clients installed.", Toast.LENGTH_SHORT).show();
                }

            }
        });

        return rootView;
    }

    public static Fragment newInstance() {
        // TODO Auto-generated method stub
        return new SettingsFragment();
    }
}