私はこのカスタム Android ビューを使用して、アプリケーションで水平方向のリストビューを作成しています。しかし最近、私はビューをいじっていてHorizonalScrollView
、ネイティブの Android レイアウトである を使用して同じ要素を持つことができることがわかりました。
さて、私の質問はこれHorizotalListView
です。通常の適応でありListView
、したがってconvertView
機能を使用できるため、使用する方が速いですか、それともHorizontalScrollView
引き続き使用する必要がありHorizontalListView
ますか?
の使用方法は次のHorizontalScrollView
とおりです。
public class AndTestActivity extends Activity implements OnClickListener{
/** Called when the activity is first created. */
Context c = this;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LinearLayout ll = (LinearLayout) findViewById(R.id.ll);
int max = 20;
ImageView img;
TextView tv;
for(int i = 0;i<max;i++){
LayoutInflater li = getLayoutInflater();
View v = li.inflate(R.layout.item, null);
img = (ImageView) v.findViewById(R.id.imageView1);
img.setId(i);
img.setImageResource(R.drawable.ic_launcher);
img.setPadding(10, 10, 10, 10);
v.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
Toast.makeText(c, "Item clicked!", Toast.LENGTH_SHORT).show();
}
});
tv = (TextView) v.findViewById(R.id.textView1);
tv.setText("Item: "+img.getId());
ll.addView(v);
}
}
public void onClick(View arg0) {
// TODO Auto-generated method stub
}
}