私は、ListViewコントロールがNumberPickerよりも構成可能であると思います。あなたは何ができるか
は異なる行のレイアウトを使用しているdependindそれは中央の1等であれば、そう、あなたのgetViewメソッド(...)メソッドは、次のようになります。
public View getView(int position, View convertView, ViewGroup parent) {
if (position == 1) {
convertView = LayoutInflater.from(getContext()).inflate(R.layout.focused_layout, parent, false);
// Do whatever with this view
} else {
convertView = LayoutInflater.from(getContext()).inflate(R.layout.not_focused_layout, parent, false);
// Do whatever with this view
}
return convertView;
}
あなたがカスタマイズすることができます。この方法どちらのレイアウトもXMLとコードの両方で使用できます。 「特別な」アイテムを他の方法で使用したい場合は、条件を変更できます。続き