Wednesday, 25 February 2015

Notification Example


Screenshots:






activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/button_notification"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="40dp"
        android:text="get Notifcation" />

</RelativeLayout>


MainActivity.java

package com.swamys.notificationexample;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity implements OnClickListener {

       NotificationManager notificationManager;
       Notification notification;

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

              Button button = (Button) findViewById(R.id.button_notification);
              button.setOnClickListener(this);

              NotificationCompat.Builder builder = new                                                    NotificationCompat.Builder(getApplicationContext());
              builder.setSmallIcon(R.drawable.ic_launcher);
              builder.setContentTitle("Sample Notification");
              builder.setContentText("Sample Notification message");
              builder.setWhen(System.currentTimeMillis());

              Intent intent = new Intent(getApplicationContext(),
                           SecondActivity.class);

              PendingIntent pendingIntent = PendingIntent.getActivity(
                           getApplicationContext(), 101, intent,
                           Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);

              builder.setContentIntent(pendingIntent);

              notification = builder.build();

              notification.flags = Notification.FLAG_AUTO_CANCEL;

              notificationManager = (NotificationManager)                                                 getSystemService(Context.NOTIFICATION_SERVICE);

       }

       @Override
       public void onClick(View arg0) {
              // TODO Auto-generated method stub

              notificationManager.notify(101, notification);
       }

}


activity_second.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SecondActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text="This is Second Activity"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>


SecondActivity.java

package com.swamys.notificationexample;

import android.app.Activity;
import android.os.Bundle;

public class SecondActivity extends Activity {

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


AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.swamys.notificationexample"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.swamys.notificationexample.MainActivity"
            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="com.swamys.notificationexample.SecondActivity"
            android:label="@string/title_activity_second" >
        </activity>
    </application>

</manifest>


Tuesday, 24 February 2015

XMLPullParsing Example

XMLPullParser is a class in Android API, which support to parse XML Data

Screenshots:



EmployeeDetails.java
package com.swamys.xmlpullparsing.model;

public class EmployeeDetails {

       private int id;
       private String name;
       private int salary;

       public int getId() {
              return id;
       }

       public void setId(int id) {
              this.id = id;
       }

       public String getName() {
              return name;
       }

       public void setName(String name) {
              this.name = name;
       }

       public int getSalary() {
              return salary;
       }

       public void setSalary(int string) {
              this.salary = string;
       }

}


XMLPillParser.java

package com.swamys.xmlpullparsing.parser;

import java.io.IOException;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;

import com.swamys.xmlpullparsing.model.EmployeeDetails;

public class XMLPullParser {

       public static List<EmployeeDetails> parseData(String data)
                     throws IOException {
              List<EmployeeDetails> employeeList = null;
              try
              {
              Boolean inDataItemTag = false;
              String CurrentTagName = "";
              EmployeeDetails employeeDetails = null;
              employeeList = new ArrayList<EmployeeDetails>();

              // creating XML Factory object
              XmlPullParserFactory factory = 
                XmlPullParserFactory.newInstance();

              // creating XML parser object
              XmlPullParser parser = factory.newPullParser();

              // set input to parser object
              parser.setInput(new StringReader(data));

              int eventType = parser.getEventType();
              while (eventType != XmlPullParser.END_DOCUMENT) {
                     switch (eventType) {
                     case XmlPullParser.START_TAG:
                     CurrentTagName = parser.getName();
                     if (CurrentTagName.equals("employee"))
                     {
                     inDataItemTag = true;
                     employeeDetails = new EmployeeDetails();
                     employeeList.add(employeeDetails);
                     }
                     break;

                     case XmlPullParser.TEXT:
                     if (inDataItemTag && employeeDetails != null) {
                           if (CurrentTagName.equals("id")) {
                           employeeDetails.setId(Integer.parseInt(parser
                                                .getText()));
                           } else if (CurrentTagName.equals("name")) {
                           employeeDetails.setName(parser.getText());
                           } else if (CurrentTagName.equals("salary")) {
                           employeeDetails.setSalary(Integer.parseInt(parser
                                                .getText()));
                           }
                     }
                           break;

                     case XmlPullParser.END_TAG:
                     if (parser.getName().equals("employee")) {
                           inDataItemTag = false;
                     }
                     break;
                     }
                     eventType = parser.next();
              }
       } catch (XmlPullParserException e) {
              e.printStackTrace();
       }
       return employeeList;
       }
}


activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text=""
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>


MainActivity.java

package com.swamys.xmlpullparsing;

import java.io.IOException;
import java.util.List;

import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.widget.TextView;

import com.swamys.xmlpullparsing.model.EmployeeDetails;
import com.swamys.xmlpullparsing.parser.XMLPullParser;

public class MainActivity extends Activity {

       TextView textView;
       ProgressDialog dialog;
       EmployeeDetails employeeDetails;
       String content = "<employees><employee><id>101</id>"
                     +"<name>Chaitanya</name><salary>50000</salary>"
                     +"</employee><employee><id>102</id><name>Swamy</name>"
                     +"<salary>60000</salary></employee></employees>";

       @Override
       protected void onCreate(Bundle savedInstanceState) {
              super.onCreate(savedInstanceState);
              setContentView(R.layout.activity_main);
              textView = (TextView) findViewById(R.id.textView1);
              try {
              List<EmployeeDetails> employeeList = XMLPullParser
                                  .parseData(content);
              setData(employeeList);
              } catch (IOException e) {
              e.printStackTrace();
              }

       }

       private void setData(List<EmployeeDetails> employeeList) {
              for (int i = 0; i < employeeList.size(); i++) {
                employeeDetails = employeeList.get(i);
                textView.append("Id: " + employeeDetails.getId() + "\n");
                textView.append("Name: " + employeeDetails.getName() + "\n");
                textView.append("Salary: "+employeeDetails.getSalary()+"\n");
                textView.append("____________________________\n");
              }
       }
}