com.maskyn.fileeditorpro.dialogfragment.FileInfoDialog.java Source code

Java tutorial

Introduction

Here is the source code for com.maskyn.fileeditorpro.dialogfragment.FileInfoDialog.java

Source

/*
 * Copyright (C) 2014 Vlad Mihalachi
 *
 * This file is part of Text Editor 8000.
 *
 * Text Editor 8000 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.
 *
 * Text Editor 8000 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 com.maskyn.fileeditorpro.dialogfragment;

import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.content.DialogInterface;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.provider.DocumentFile;
import android.view.View;
import android.widget.ListView;

import org.apache.commons.io.FileUtils;

import java.io.File;
import java.util.Date;

import com.maskyn.fileeditorpro.R;
import com.maskyn.fileeditorpro.adapter.AdapterTwoItem;
import com.maskyn.fileeditorpro.util.AccessStorageApi;
import com.maskyn.fileeditorpro.util.Device;
import com.maskyn.fileeditorpro.views.DialogHelper;

// ...
public class FileInfoDialog extends DialogFragment {

    public static FileInfoDialog newInstance(Uri uri) {
        final FileInfoDialog f = new FileInfoDialog();
        final Bundle args = new Bundle();
        args.putParcelable("uri", uri);
        f.setArguments(args);
        return f;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

        View view = new DialogHelper.Builder(getActivity()).setTitle(R.string.info)
                .setView(R.layout.dialog_fragment_file_info).createSkeletonView();
        //final View view = getActivity().getLayoutInflater().inflate(R.layout.dialog_fragment_file_info, null);

        ListView list = (ListView) view.findViewById(android.R.id.list);

        DocumentFile file = DocumentFile.fromFile(
                new File(AccessStorageApi.getPath(getActivity(), (Uri) getArguments().getParcelable("uri"))));

        if (file == null && Device.hasKitKatApi()) {
            file = DocumentFile.fromSingleUri(getActivity(), (Uri) getArguments().getParcelable("uri"));
        }

        // Get the last modification information.
        Long lastModified = file.lastModified();

        // Create a new date object and pass last modified information
        // to the date object.
        Date date = new Date(lastModified);

        String[] lines1 = { getString(R.string.name),
                //getString(R.string.folder),
                getString(R.string.size), getString(R.string.modification_date) };
        String[] lines2 = { file.getName(),
                //file.getParent(),
                FileUtils.byteCountToDisplaySize(file.length()), date.toString() };

        list.setAdapter(new AdapterTwoItem(getActivity(), lines1, lines2));

        return new AlertDialog.Builder(getActivity()).setView(view)
                .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                    }
                }).create();
    }
}