org.kepennar.android.client.social.twitter.TwitterDirectMessageActivity.java Source code

Java tutorial

Introduction

Here is the source code for org.kepennar.android.client.social.twitter.TwitterDirectMessageActivity.java

Source

/*
 * Copyright 2011 the original author or authors.
 *
 * 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 org.kepennar.android.client.social.twitter;

import org.kepennar.android.client.AbstractAsyncActivity;
import org.kepennar.android.client.R;
import org.springframework.social.twitter.api.TwitterApi;

import android.content.Context;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

/**
 * @author Roy Clarkson
 */
public class TwitterDirectMessageActivity extends AbstractAsyncActivity {
    protected static final String TAG = TwitterDirectMessageActivity.class.getSimpleName();

    private TwitterApi _twitterApi;

    //***************************************
    // Activity methods
    //***************************************
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.twitter_direct_message_activity_layout);

        _twitterApi = getApplicationContext().getConnectionRepository().findPrimaryConnectionToApi(TwitterApi.class)
                .getApi();

        // Initiate the POST request when the button is clicked
        final Button button = (Button) findViewById(R.id.button_tweet);
        button.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // hide the soft keypad
                InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(
                        Context.INPUT_METHOD_SERVICE);
                EditText editText = (EditText) findViewById(R.id.edit_text_message);
                inputMethodManager.hideSoftInputFromWindow(editText.getWindowToken(), 0);

                new PostDirectMessageTask().execute();
            }
        });
    }

    //***************************************
    // Private methods
    //***************************************
    private void showResult(String result) {
        Toast.makeText(this, result, Toast.LENGTH_LONG).show();
    }

    //***************************************
    // Private classes
    //***************************************
    private class PostDirectMessageTask extends AsyncTask<Void, Void, String> {
        private String _user;
        private String _message;

        @Override
        protected void onPreExecute() {
            // before the network request begins, show a progress indicator
            showProgressDialog("Sending message...");

            // retrieve the tweet text from the EditText field
            EditText editTextUser = (EditText) findViewById(R.id.edit_text_user);
            _user = editTextUser.getText().toString();

            EditText editTextMessage = (EditText) findViewById(R.id.edit_text_message);
            _message = editTextMessage.getText().toString();
        }

        @Override
        protected String doInBackground(Void... params) {
            try {
                _twitterApi.directMessageOperations().sendDirectMessage(_user, _message);
                return "Message sent";
            } catch (Exception e) {
                Log.e(TAG, e.getLocalizedMessage(), e);
                return "An error occurred. See the log for details";
            }
        }

        @Override
        protected void onPostExecute(String result) {
            // after the network request completes, hid the progress indicator
            dismissProgressDialog();

            showResult(result);
        }
    }
}