Saturday, March 24, 2012

Mini NotePad - 2


4.) Create new_text.xml and put the following code in that:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <LinearLayout android:orientation="horizontal"android:layout_width="fill_parent" android:layout_height="wrap_content">
                <TextView android:layout_width="wrap_content"android:layout_height="wrap_content" android:text="Title" />
                <EditText android:id="@+id/title"android:layout_width="wrap_content"   android:layout_height="wrap_content"android:layout_weight="1" />
        </LinearLayout>
        <TextView android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="Body Text" />
        <EditText android:id="@+id/insertdata" android:layout_width="fill_parent"
                android:layout_height="wrap_content" android:layout_weight="1"
                android:scrollbars="vertical" />
        <LinearLayout android:orientation="horizontal"android:layout_width="fill_parent" android:layout_height="wrap_content">
                <Button android:id="@+id/save" android:text="Save"android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <Button android:text="Cut" android:id="@+id/cut"android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <Button android:text="Copy" android:id="@+id/copy"android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <Button android:text="Paste" android:id="@+id/paste"android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <Button android:text="Back" android:id="@+id/back"android:layout_width="wrap_content" android:layout_height="wrap_content" />
        </LinearLayout>
</LinearLayout>
5.) Register this new Activity in AndroidManifest.xml :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.app.MyNoteEditer"
     android:versionCode="1"
     android:versionName="1.0">
    <uses-sdk android:minSdkVersion="7" />
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".OpenNotes" android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".NewText">
        </activity>
    </application>
</manifest>
6.) Replace the code of main.xml with following code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="wrap_content" android:layout_height="wrap_content">
    <ListView android:id="@+id/android:list" android:layout_width="wrap_content"android:layout_height="wrap_content"/>
        <TextView android:id="@+id/android:empty"android:layout_width="wrap_content" android:layout_height="wrap_content"android:text="No New Notes…Press on Menu to Add New Note"/>
</LinearLayout>
7.) Create notes_list.xml and put the following code in that:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="wrap_content" android:layout_height="wrap_content">
    <ListView android:id="@+id/android:list" android:layout_width="wrap_content"android:layout_height="wrap_content" />
        <TextView android:id="@+id/android:empty"android:layout_width="wrap_content" android:layout_height="wrap_content"android:text="No Notes…"/>
</LinearLayout>
8.) Create notes_row.xml and put the following code in that:
<?xml version="1.0" encoding="utf-8"?>
<TextView android:id="@+id/text1"xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="wrap_content" android:layout_height="wrap_content"/>
9.) Run the Application.
Steps to Create:
1.) Open Eclipse. Use the New Project Wizard and select Android Project Give the respective project name i.e. MyNoteEditer. Enter following information:
Project name: MyNoteEditer
Build Target: Android 2.1
Application name: MyNoteEditer
Package name: com.app.MyNoteEditer
Create Activity: OpenNotes
On Clicking Finish MyNoteEditer code structure is generated with the necessary Android Packages being imported along with OpenNotes.java. Replace the default code of OpenNotes.java with the following:
package com.app.MyNoteEditer;
import android.app.ListActivity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ContextMenu.ContextMenuInfo;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
import android.widget.AdapterView.AdapterContextMenuInfo;
public class OpenNotes extends ListActivity {
   private static final int ACTIVITY_CREATE=0;
   private static final int ACTIVITY_EDIT=1;
   private static final int INSERT_ID = Menu.FIRST;
   private static final int DELETE_ID = Menu.FIRST + 1;
   private NotesDbAdapter mDbHelper;
   private Cursor mNotesCursor;
   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        mDbHelper = new NotesDbAdapter(this);
        mDbHelper.open();
        fillData();
        registerForContextMenu(getListView());
   }
   public void onBackPressed() {
        moveTaskToBack(true);
        this.finish();
        return;
   }
   private void fillData() {
        // Get all of the rows from the database and create the item list
        mNotesCursor = mDbHelper.fetchAllNotes();
        startManagingCursor(mNotesCursor);
        // Create an array to specify the fields we want to display in the list (only TITLE)
        String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
        // and an array of the fields we want to bind those fields to (in this case just text1)
        int[] to = new int[]{R.id.text1};
        // Now create a simple cursor adapter and set it to display
        SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
        setListAdapter(notes);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        super.onCreateOptionsMenu(menu);
        menu.add(0, INSERT_ID, 0"New Note");
        return true;
    }
    @Override
    public boolean onMenuItemSelected(int featureId, MenuItem item) {
        switch(item.getItemId()) {
            case INSERT_ID:
                createNote();
                return true;
        }
        return super.onMenuItemSelected(featureId, item);
    }
    @Override
    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
        super.onCreateContextMenu(menu, v, menuInfo);
        menu.add(0, DELETE_ID, 0"Delete");
    }
    @Override
    public boolean onContextItemSelected(MenuItem item) {
        switch(item.getItemId()) {
            case DELETE_ID:
                AdapterContextMenuInfo info = (AdapterContextMenuInfo)item.getMenuInfo();
                mDbHelper.deleteNote(info.id);
                fillData();
                return true;
        }
        return super.onContextItemSelected(item);
    }
    private void createNote() {
        Intent i = new Intent(this, NewText.class);
        startActivityForResult(i, ACTIVITY_CREATE);
    }
    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);
        Cursor c = mNotesCursor;
        c.moveToPosition(position);
        Intent i = new Intent(this, NewText.class);
        i.putExtra(NotesDbAdapter.KEY_ROWID, id);
        i.putExtra(NotesDbAdapter.KEY_TITLE, c.getString(c.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
        i.putExtra(NotesDbAdapter.KEY_BODY, c.getString(c.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY)));
        startActivityForResult(i, ACTIVITY_EDIT);
    }
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
        super.onActivityResult(requestCode, resultCode, intent);
        Bundle extras =intent.getExtras();
         switch(requestCode) {
            case ACTIVITY_CREATE:
                String title = extras.getString(NotesDbAdapter.KEY_TITLE);
                String body = extras.getString(NotesDbAdapter.KEY_BODY);
                mDbHelper.createNote(title, body);
                fillData();
                break;
            case ACTIVITY_EDIT:
                Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
                if (rowId != null) {
                    String editTitle =extras.getString(NotesDbAdapter.KEY_TITLE);
                    String editBody = extras.getString(NotesDbAdapter.KEY_BODY);
                    mDbHelper.updateNote(rowId, editTitle, editBody);
                }
                fillData();
                break;
        }
    }
}
Output : The final output

No comments: