嗨,我是这个项目中的 android 新手,我将显示纺织品库存,我有 listview 它将在行视图中显示数据,我想在这个列表视图中捏放大,请帮助我。
@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();
}