21

在 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 子类中做同样的事情?没有setContentViewonCreate方法...

4

2 回答 2

36

好的,我发现了一种方法。基本上,您需要继承通常在 XML 中定义的最顶层类,而不是直接继承 View 类。例如,如果您的自定义 View 需要一个 LinearLayout 作为其最顶层的类,那么您的自定义 View 应该简单地继承 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 是“黑客”吗?据我所见。一些官方的 View 子类做同样的事情,比如NumberPickerSearchView(即使它们从 XML 扩展它们的布局)。

仔细想想,这实际上是一个非常明显的答案。

于 2013-01-02T11:30:28.473 回答
0

如果我理解您的问题,您需要使用 inflate,如下所示:

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
于 2013-01-02T11:23:51.040 回答