在Activity中,您可以通过以下方式以编程方式创建LinearLayout:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
ll.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
TextView tv1 = new TextView(this);
tv1.setText("HELLO");
ll.addView(tv1);
TextView tv2 = new TextView(this);
tv2.setText("WORLD");
ll.addView(tv2);
setContentView(ll);
}
如何在自定义View子类中执行相同操作?没有setContentView
或onCreate
方法......
答案 0 :(得分:31)
好的,我发现了一种方法。基本上,您不需要直接对View类进行子类化,而是需要子类化您通常在XML中定义的最顶层的类。例如,如果您的自定义视图需要将LinearLayout作为其最顶层的类,那么您的自定义视图应该只是子类化LinearLayout。
例如:
public class MyCustomView extends LinearLayout
{
public MyCustomView(Context context, AttributeSet attrs)
{
super(context, attrs);
setOrientation(LinearLayout.VERTICAL);
setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
TextView tv1 = new TextView(context);
tv1.setText("HELLO");
addView(tv1);
TextView tv2 = new TextView(context);
tv2.setText("WORLD");
addView(tv2);
}
}
将LinearLayout子类化为“hack”吗?不是我能看到的。一些官方的View子类也做同样的事情,比如NumberPicker和SearchView(即使它们从XML中扩展了它们的布局)。
经过反思,这实际上是一个非常明显的答案。
答案 1 :(得分:-1)
如果我理解你的问题,你需要使用膨胀,如下:
public final class ViewHolder {
public TextView title;
public TextView artist;
public TextView duration;
public ImageView thumb_image;
//A class for the ViewHolder
}
// Put this where you want to inflate this layout, could be a customlistview
View view = getLayoutInflater().inflate(R.layout.your_layout, null);
holder = new ViewHolder();
holder.title = (TextView)view.findViewById(R.id.title); // title
holder.artist = (TextView)view.findViewById(R.id.artist); // artist name
holder.duration = (TextView)view.findViewById(R.id.duration); // duration
holder.thumb_image=(ImageView)view.findViewById(R.id.list_image); // thumb image