Android Open Source - iosched Note Edit Activity






From Project

Back to project page iosched.

License

The source code is released under:

Apache License

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

/*
 * Copyright 2010 Google Inc.//from   w ww  .  j av  a  2  s. c om
 *
 * 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.google.android.apps.iosched.ui;

import com.google.android.apps.iosched.R;
import com.google.android.apps.iosched.provider.ScheduleContract.Notes;
import com.google.android.apps.iosched.util.NotifyingAsyncQueryHandler;
import com.google.android.apps.iosched.util.UIUtils;
import com.google.android.apps.iosched.util.NotifyingAsyncQueryHandler.AsyncQueryListener;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.ContentValues;
import android.content.DialogInterface;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

/**
 * Editor for {@link Notes}, handles both {@link Intent#ACTION_INSERT} and
 * {@link Intent#ACTION_EDIT}.
 */
public class NoteEditActivity extends Activity implements AsyncQueryListener {

    private EditText mText;

    private NotifyingAsyncQueryHandler mHandler;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_note_edit);

        ((TextView) findViewById(R.id.title_text)).setText(getTitle());

        mText = (EditText) findViewById(android.R.id.text1);

        mHandler = new NotifyingAsyncQueryHandler(getContentResolver(), this);

        final String action = getIntent().getAction();
        if (Intent.ACTION_EDIT.equals(action) && savedInstanceState == null) {
            // Start background query to load current state
            final Uri noteUri = getIntent().getData();
            mHandler.startQuery(noteUri, NotesQuery.PROJECTION);
        }
    }

    /** {@inheritDoc} */
    public void onQueryComplete(int token, Object cookie, Cursor cursor) {
        try {
            if (!cursor.moveToFirst()) return;

            // Load current note content for editing
            mText.setText(cursor.getString(NotesQuery.NOTE_CONTENT));

        } finally {
            cursor.close();
        }
    }

    public void onSaveClick(View v) {
        saveContent();
    }

    public void onDiscardClick(View v) {
        final String noteContent = mText.getText().toString();
        if (TextUtils.isEmpty(noteContent)) {
            // When empty content, shortcut to discard without confirm step
            discardContent();
        } else {
            showDialog(R.id.dialog_discard_confirm);
        }
    }

    /** Handle "home" title-bar action. */
    public void onHomeClick(View v) {
        UIUtils.goHome(this);
    }

    /** Handle "refresh" title-bar action. */
    public void onRefreshClick(View v) {
    }

    /** Handle "search" title-bar action. */
    public void onSearchClick(View v) {
        UIUtils.goSearch(this);
    }

    @Override
    protected Dialog onCreateDialog(int id) {
        switch (id) {
            case R.id.dialog_discard_confirm: {
                return new AlertDialog.Builder(this)
                        .setTitle(R.string.note_discard_title)
                        .setIcon(android.R.drawable.ic_dialog_alert)
                        .setMessage(R.string.note_discard_confirm)
                        .setNegativeButton(android.R.string.cancel, null)
                        .setPositiveButton(android.R.string.ok, new DiscardConfirmClickListener())
                        .setCancelable(false)
                        .create();
            }
        }
        return null;
    }

    private class DiscardConfirmClickListener implements DialogInterface.OnClickListener {
        public void onClick(DialogInterface dialog, int which) {
            discardContent();
        }
    }

    /**
     * Persist the contents of into {@link Notes} backend. The actual save is
     * performed asynchronously, so this method doesn't block.
     */
    private void saveContent() {
        final String noteContent = mText.getText().toString();

        // TODO: consider passing off to startService() to prevent our
        // process from being killed before note is actually persisted.

        // When empty content, treat as discard
        if (TextUtils.isEmpty(noteContent)) {
            discardContent();
            return;
        }

        // Always store updated note content
        final ContentValues values = new ContentValues();
        values.put(Notes.NOTE_CONTENT, noteContent);

        final String action = getIntent().getAction();
        if (Intent.ACTION_INSERT.equals(action)) {
            // Insert also includes current timestamp
            values.put(Notes.NOTE_TIME, System.currentTimeMillis());

            final Uri notesDirUri = getIntent().getData();
            mHandler.startInsert(notesDirUri, values);
        } else if (Intent.ACTION_EDIT.equals(action)) {
            final Uri noteUri = getIntent().getData();
            mHandler.startUpdate(noteUri, values);
        }

        finish();
    }

    private void discardContent() {
        final String action = getIntent().getAction();
        if (Intent.ACTION_EDIT.equals(action)) {
            final Uri noteUri = getIntent().getData();
            mHandler.startDelete(noteUri);

        } else if (Intent.ACTION_INSERT.equals(action)) {
            // Silently discard new note

        }

        finish();
    }

    /** {@link Notes} query parameters. */
    private interface NotesQuery {
        String[] PROJECTION = {
                Notes.NOTE_TIME,
                Notes.NOTE_CONTENT,
        };

        int NOTE_TIME = 0;
        int NOTE_CONTENT = 1;
    }
}




Java Source Code List

com.google.android.apps.iosched.io.LocalBlocksHandler.java
com.google.android.apps.iosched.io.LocalExecutor.java
com.google.android.apps.iosched.io.LocalRoomsHandler.java
com.google.android.apps.iosched.io.LocalSearchSuggestHandler.java
com.google.android.apps.iosched.io.LocalSessionsHandler.java
com.google.android.apps.iosched.io.LocalTracksHandler.java
com.google.android.apps.iosched.io.RemoteExecutor.java
com.google.android.apps.iosched.io.RemoteSessionsHandler.java
com.google.android.apps.iosched.io.RemoteSpeakersHandler.java
com.google.android.apps.iosched.io.RemoteVendorsHandler.java
com.google.android.apps.iosched.io.RemoteWorksheetsHandler.java
com.google.android.apps.iosched.io.XmlHandler.java
com.google.android.apps.iosched.provider.ScheduleContract.java
com.google.android.apps.iosched.provider.ScheduleDatabase.java
com.google.android.apps.iosched.provider.ScheduleProvider.java
com.google.android.apps.iosched.service.SyncService.java
com.google.android.apps.iosched.ui.BlocksActivity.java
com.google.android.apps.iosched.ui.HomeActivity.java
com.google.android.apps.iosched.ui.MapActivity.java
com.google.android.apps.iosched.ui.NoteEditActivity.java
com.google.android.apps.iosched.ui.NotesActivity.java
com.google.android.apps.iosched.ui.ScheduleActivity.java
com.google.android.apps.iosched.ui.SearchActivity.java
com.google.android.apps.iosched.ui.SessionDetailActivity.java
com.google.android.apps.iosched.ui.SessionsActivity.java
com.google.android.apps.iosched.ui.StarredActivity.java
com.google.android.apps.iosched.ui.TrackDetailActivity.java
com.google.android.apps.iosched.ui.TracksActivity.java
com.google.android.apps.iosched.ui.VendorDetailActivity.java
com.google.android.apps.iosched.ui.VendorsActivity.java
com.google.android.apps.iosched.ui.widget.BlockView.java
com.google.android.apps.iosched.ui.widget.BlocksLayout.java
com.google.android.apps.iosched.ui.widget.TimeRulerView.java
com.google.android.apps.iosched.util.DetachableResultReceiver.java
com.google.android.apps.iosched.util.FractionalTouchDelegate.java
com.google.android.apps.iosched.util.Lists.java
com.google.android.apps.iosched.util.Maps.java
com.google.android.apps.iosched.util.MathUtils.java
com.google.android.apps.iosched.util.NotesExporter.java
com.google.android.apps.iosched.util.NotifyingAsyncQueryHandler.java
com.google.android.apps.iosched.util.ParserUtils.java
com.google.android.apps.iosched.util.SelectionBuilder.java
com.google.android.apps.iosched.util.Sets.java
com.google.android.apps.iosched.util.SpreadsheetEntry.java
com.google.android.apps.iosched.util.UIUtils.java
com.google.android.apps.iosched.util.WorksheetEntry.java