org.ciasaboark.tacere.activity.fragment.AboutFragment.java Source code

Java tutorial

Introduction

Here is the source code for org.ciasaboark.tacere.activity.fragment.AboutFragment.java

Source

/*
 * Copyright (c) 2015 Jonathan Nelson
 * Released under the BSD license.  For details see the COPYING file.
 */

package org.ciasaboark.tacere.activity.fragment;

import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.annotation.TargetApi;
import android.content.Context;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.widget.SwitchCompat;
import android.text.method.LinkMovementMethod;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewAnimationUtils;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;

import org.ciasaboark.tacere.R;
import org.ciasaboark.tacere.R.id;
import org.ciasaboark.tacere.billing.Authenticator;
import org.ciasaboark.tacere.prefs.BetaPrefs;
import org.ciasaboark.tacere.versioning.Versioning;

public class AboutFragment extends Fragment {
    private static final String TAG = "AboutFragment";
    private View rootView;
    private Context context;
    private int iconTouches = 0;
    private Toast ongoingToast;
    private Integer x;
    private Integer y;
    View.OnTouchListener mOnTouch = new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            final int action = event.getAction();
            switch (action & MotionEvent.ACTION_MASK) {
            case MotionEvent.ACTION_DOWN: {
                final int x = (int) event.getX();
                final int y = (int) event.getY();
                recordCoordinates(x, y);
                break;
            }
            }
            return false;
        }
    };

    private void recordCoordinates(int x, int y) {
        this.x = x;
        this.y = y;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        rootView = inflater.inflate(R.layout.fragment_about, container, false);
        context = getActivity();

        ongoingToast = Toast.makeText(context, "", Toast.LENGTH_SHORT);

        TextView sourceText = (TextView) rootView.findViewById(id.about_source_text);
        sourceText.setMovementMethod(LinkMovementMethod.getInstance());
        TextView bugsText = (TextView) rootView.findViewById(id.about_bugs_text);
        bugsText.setMovementMethod(LinkMovementMethod.getInstance());
        TextView commentsText = (TextView) rootView.findViewById(id.about_comments_text);
        commentsText.setMovementMethod(LinkMovementMethod.getInstance());

        TextView versionText = (TextView) rootView.findViewById(id.about_version_number);
        String formattedVersion = String.format(getString(R.string.about_version), Versioning.getVersionCode());
        versionText.setText(formattedVersion);
        //textview using marquee scrolling, but this only works if the textview is selected
        versionText.setSelected(true);

        TextView versionType = (TextView) rootView.findViewById(id.about_version_type);
        String type;
        Authenticator authenticator = new Authenticator(context);
        type = authenticator.getAuthenticatedTypeString() + " version";
        versionType.setText(type);

        final View betaSettingsHeaderContent = rootView.findViewById(id.about_header_beta_settings);
        betaSettingsHeaderContent.setOnTouchListener(mOnTouch);
        final View normalHeaderContent = rootView.findViewById(id.about_header_normal);
        normalHeaderContent.setOnTouchListener(mOnTouch);
        normalHeaderContent.setOnLongClickListener(new View.OnLongClickListener() {
            @Override
            public boolean onLongClick(View v) {
                toggleVisibility(normalHeaderContent);
                return true;
            }
        });
        betaSettingsHeaderContent.setOnLongClickListener(new View.OnLongClickListener() {
            @Override
            public boolean onLongClick(View v) {
                toggleVisibility(normalHeaderContent);
                return true;
            }
        });

        final View betaSettingsClickArea = rootView.findViewById(id.about_header_beta_settings_clickarea);
        betaSettingsClickArea.setOnTouchListener(mOnTouch);
        final SwitchCompat betaSettingsSwitch = (SwitchCompat) rootView
                .findViewById(id.about_header_beta_settings_switch);
        final BetaPrefs betaPrefs = new BetaPrefs(context);
        betaSettingsSwitch.setChecked(betaPrefs.isBetaPrefsUnlocked());
        betaSettingsClickArea.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                betaSettingsSwitch.performClick();
                betaPrefs.setIsBetaPrefsUnlocked(betaSettingsSwitch.isChecked());
            }
        });
        betaSettingsClickArea.setOnLongClickListener(new View.OnLongClickListener() {
            @Override
            public boolean onLongClick(View v) {
                toggleVisibility(normalHeaderContent);
                return true;
            }
        });

        return rootView;
    }

    @Override
    public void onDetach() {
        super.onDetach();
    }

    private void toggleVisibility(View view) {
        if (Build.VERSION.SDK_INT >= 21) {
            toggleVisibilityCircularReveal(view);
        } else {
            toggleVisibilitySimple(view);
        }
    }

    @TargetApi(21)
    private void toggleVisibilityCircularReveal(final View view) {
        if (view.getVisibility() == View.VISIBLE) {
            //the view is visible, so animate it out then set visibility to GONE
            int cx;
            int cy;
            if (this.x == null || this.y == null) {
                // get the center for the clipping circle
                cx = (view.getLeft() + view.getRight()) / 2;
                cy = (view.getTop() + view.getBottom()) / 2;
            } else {
                //a touch event has been recorded, use the last known coordinates
                cx = this.x;
                cy = this.y;
            }

            // get the initial radius for the clipping circle
            int initialRadius = view.getWidth();

            // create the animation (the final radius is zero)
            Animator anim = ViewAnimationUtils.createCircularReveal(view, cx, cy, initialRadius, 0);
            anim.addListener(new AnimatorListenerAdapter() {
                @Override
                public void onAnimationEnd(Animator animation) {
                    super.onAnimationEnd(animation);
                    view.setVisibility(View.INVISIBLE);
                }
            });
            anim.setDuration(700);
            // start the animation
            anim.start();
        } else {
            //the view is not visible (either GONE or INVISIBILE), set visibility to VISIBLE, then
            //animate in
            int cx;
            int cy;
            if (this.x == null || this.y == null) {
                // get the center for the clipping circle
                cx = (view.getLeft() + view.getRight()) / 2;
                cy = (view.getTop() + view.getBottom()) / 2;
            } else {
                //a touch event has been recorded, use the last known coordinates
                cx = this.x;
                cy = this.y;
            }

            // get the final radius for the clipping circle
            int finalRadius = view.getWidth();

            // create and start the animator for this view
            // (the start radius is zero)
            Animator anim = ViewAnimationUtils.createCircularReveal(view, cx, cy, 0, finalRadius);
            anim.setDuration(500);
            view.setVisibility(View.VISIBLE);
            anim.start();
        }
    }

    private void toggleVisibilitySimple(View view) {
        if (view.getVisibility() == View.VISIBLE) {
            view.setVisibility(View.INVISIBLE);
        } else {
            view.setVisibility(View.VISIBLE);
        }
    }

    //    @Override
    //    public boolean onCreateOptionsMenu(Menu menu) {
    //        // Inflate the menu; this adds items to the action bar if it is present.
    //        getMenuInflater().inflate(R.menu.fragment_about, menu);
    //        return true;
    //    }

    //    @Override
    //    public boolean onOptionsItemSelected(MenuItem item) {
    //        boolean itemProcessedHere = false;
    //        switch (item.getItemId()) {
    //            case id.action_about_tutorial:
    //                Intent tutorialIntent = new Intent(this, TutorialActivity.class);
    //                startActivity(tutorialIntent);
    //                itemProcessedHere = true;
    //                break;
    //            case R.id.action_about_license:
    //                Intent licenseIntent = new Intent(this, org.ciasaboark.tacere.activity.AboutLicenseActivity.class);
    //                licenseIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    //                startActivity(licenseIntent);
    //                itemProcessedHere = true;
    //                break;
    //            case android.R.id.home:
    //                // This ID represents the Home or Up button. In the case of this
    //                // activity, the Up button is shown. Use NavUtils to allow users
    //                // to navigate up one level in the application structure. For
    //                // more details, see the Navigation pattern on Android Design:
    //                //
    //                // http://developer.android.com/design/patterns/navigation.html#up-vs-back
    //                //
    //                NavUtils.navigateUpFromSameTask(this);
    //                itemProcessedHere = true;
    //                break;
    //            case R.id.action_about_updates:
    //                Updates updates = new Updates(context, this);
    //                updates.showUpdatesDialog();
    //                itemProcessedHere = true;
    //                break;
    //        }
    //
    //        return itemProcessedHere;
    //    }

}