Visual Programming Lab7
Visual Programming Lab7
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.ArrayAdapter;
import android.widget.Toast;
}
public void onListItemClick(ListView parent ,View v,int postion,long id)
{
Toast.makeText(this,"You have
selected"+array_technology[postion],Toast.LENGTH_SHORT).show();
}
}
Task 2: Try It who to allow multiple items in the List view to be selected and
how to enable filtering support.
package com.example.oraibpc.listview;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.ArrayAdapter;
import android.widget.Toast;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.ArrayAdapter;
import android.widget.Toast;
}
public void onListItemClick(ListView parent ,View v,int postion,long id)
{
Toast.makeText(this,"You have selected
"+array_technology[postion],Toast.LENGTH_SHORT).show();
}
}