Hi am new to android in this project i will display stock of textile, i had listview it will display the data in row view , i want to pinch zoom in this list view, please help me.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.bsdselect);
//lv1=(ListView)findViewById(R.id.list1);
lv=(ListView)findViewById(R.id.listbsd);
title=(TextView)findViewById(R.id.title);
Bundle b=this.getIntent().getExtras();
items=b.getString("item");
items1=b.getString("item1");
dates=b.getString("date");
String topic=items+"/"+items1;
title.setText(topic);
SimpleDateFormat dateFormat = new SimpleDateFormat(
"yyyy-MM-dd");
Date myDate = null;
try {
myDate = dateFormat.parse(dates);
} catch (ParseException e) {
e.printStackTrace();
}
SimpleDateFormat timeFormat = new SimpleDateFormat("yyyy-MM-dd");
finalDate = timeFormat.format(myDate);
torun();
}