我有一个应用程序,显示包含详细信息的项目列表。当用户选择该项目时,该应用程序会显示额外的详细信息。我创建了两个扩展RelativeLayout
的视图,一个用于listView,另一个用于详细视图,并添加到同一父布局。这是我的xml和views的示例代码。
使用ListView查看
class MyView1 extends RelativeLayout {
private Context context = null;
public MyView1 (Context context) {
super(context);
this.context = context;
createView();
}
private void createView() {
LayoutInflater layoutInflater = (LayoutInflater) context
.getSystemService(Service.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.layout1, null);
this.addView(view );
listview = (ListView) findViewById(R.id.listView);
listview.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
Object obj = list.get(position);
MyView1.this.removeAllViews();
MyView1.this.addView(new MyView2(context));
}
});
//Set Adapter
}
}
查看详情
class MyView2 extends RelativeLayout {
private Context context = null;
public MyView2(Context context) {
super(context);
this.context = context;
createView();
}
private void createView() {
LayoutInflater layoutInflater = (LayoutInflater)context.getSystemService(Service.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.layout2s, null);
this.addView(view );
backbutton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
MyView2 .this.removeAllViews();
MyView2 .this.addView(new MyView1(context));
}
});
}
}
我将这两个视图添加到框架布局中。我的问题是,添加/删除这样的视图会减慢应用程序的速度。如何更有效地添加和删除它们?
答案 0 :(得分:2)
添加
此行效率不高
View view = layoutInflater.inflate(R.layout.layout1, null);
为什么呢?看看这个article
<强>拆卸强>
此行效率不高
MyView1.this.removeAllViews();
为什么呢?此方法将循环其子视图并将其删除。如果您知道要删除哪个视图对象,则可以使用removeView(View v)函数。这样会更有效率。