Just drop listview widget in layout and give id listView1 or paste this code in main xml file:
</LinearLayout>
Now open your Java file and paste below code
<LinearLayout xmlns:android="http://schemas. android.com/apk/res/android"
android:layout_width="fill_ parent"
android:layout_height="fill_ parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_ parent"
android:layout_height="wrap_ content" >
</ListView>
Now open your Java file and paste below code
package com.smr; //package name
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView. OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import android.app.Activity;
public class MainActivity extends Activity implementsOnItemClickListener
{
String values[]={"January", "July", "June", "Ravi","Ravinder", "Abhishek", "Abhinav", "Harkishore", "Hardev"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate( savedInstanceState);
setContentView(R.layout.activi ty_main);
ListView lv=(ListView)findViewById(R. id.listView1);
//Adapter will use to adapt string and pass to list
ArrayAdapter<?> adapter=new ArrayAdapter<String>(this, android.R.layout.simple_list_ item_1, values);
lv.setAdapter(adapter);
lv.setOnItemClickListener(this );
}
@Override
public void onItemClick(AdapterView<?> av, View v, int pos,long id)
{
String name=(String)av.getItemAtPosit ion(pos);
Toast.makeText( getApplicationContext(), "Happy Navratri "+name, Toast.LENGTH_SHORT).show();
}
}
No comments:
Post a Comment