アクティビティでは、次の方法でプログラムで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);
}
カスタムビューサブクラス内で同じことをするにはどうすればよいですか? setContentView
またはonCreate
メソッドはありません...
わかりました。その方法の1つを発見しました。基本的に、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のサブクラス化は「ハック」ですか?私の見る限りではありません。 NumberPicker や SearchView のように、いくつかの公式のViewサブクラスも同じです(レイアウトがXMLから拡張されている場合でも)。
振り返ってみると、それは実際にはかなり明白な答えです。
あなたの質問を理解したら、次のようにインフレートを使用する必要があります:
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