私はサイドメニューリストビューに取り組んでおり、すべてのアイテムはこの xml "rbm_item.xml" です:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/rbm_item_height"
android:orientation="horizontal"
android:paddingTop="@dimen/rbm_item_padding_topbottom"
android:paddingBottom="@dimen/rbm_item_padding_topbottom"
android:paddingLeft="@dimen/rbm_item_padding_leftright"
android:paddingRight="@dimen/rbm_item_padding_leftright" >
<ImageView
android:id="@+id/rbm_item_icon"
android:layout_height="@dimen/rbm_item_image_height"
android:layout_width="@dimen/rbm_item_image_width"
android:scaleType="fitCenter"
/>
<TextView
android:id="@+id/rbm_item_text"
android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_height="wrap_content"
android:textSize="@dimen/rbm_item_text_size"
android:textColor="@color/rbm_item_text_color"
android:paddingLeft="@dimen/rbm_item_text_padding_left"
android:paddingTop="@dimen/rbm_item_text_padding_top"
android:singleLine="true"
android:ellipsize="end"/>
<TextView
android:id="@+id/rbm_item_text_sub"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/rbm_item_text"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:textSize="@dimen/rbm_item_text_sub_size"
android:textColor="@color/rbm_item_text_sub_color"
android:paddingLeft="@dimen/rbm_item_text_sub_padding_left"
android:singleLine="true"
android:ellipsize="end"/>
そして、このリストビュー項目のアダプターを作成しました:
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = LayoutInflater.from(getContext()).inflate(
R.layout.rbm_item, null);
}
ImageView icon = (ImageView) convertView.findViewById(R.id.rbm_item_icon);
icon.setImageResource(getItem(position).iconRes);
TextView title = (TextView) convertView.findViewById(R.id.rbm_item_text);
title.setText(getItem(position).tag);
TextView Description = (TextView) convertView
.findViewById(R.id.rbm_item_text_sub);
return convertView;
}
これは単純に、リスト xml ファイル "list.xml" です。
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@color/rbm_divider_color"
android:dividerHeight="@dimen/rbm_divider_ht"
android:paddingLeft="@dimen/list_padding"
android:paddingRight="@dimen/list_padding" />
そして onCreateView 関数:
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.list, null);
}
そしてadapter.add(...)
、この関数によってアイテムをアダプタに動的に追加します:
public void parseXml(int menu) {
try {
adapter = new SampleAdapter(getActivity());
XmlResourceParser xpp = getResources().getXml(menu);
xpp.next();
int eventType = xpp.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT) {
if (eventType == XmlPullParser.START_TAG) {
String elemName = xpp.getName();
if (elemName.equals("item")) {
String textId = xpp.getAttributeValue(
"http://schemas.android.com/apk/res/android", "title");
String iconId = xpp.getAttributeValue(
"http://schemas.android.com/apk/res/android", "icon");
String resId = xpp.getAttributeValue(
"http://schemas.android.com/apk/res/android", "id");
String Desc = MainActivity.getItemDescription(resId);
//Log.i("", "parsing :" + Desc);
this.adapter.add(new SampleItem(textId, Integer.valueOf(iconId
.replace("@", "")), Desc));
}
}
eventType = xpp.next();
}
} catch (Exception e) {
Log.e("log", "while parsing xml", e);
}
setListAdapter(adapter);
}
そして、SampleItem はアイコン、タイトル... プロパティを含む単純な構造体であり、Menu パラメーターは<menu>
タグ内の項目を含む xml ファイルであり、私はそれらの上で itreat を行い、それらのすべては次のようになります:
<item android:id="@+id/ribbon_menu_profile" android:title="Profile"
android:icon="@drawable/profile"></item>
.....
私が実際に欲しいのは、これらのアイテムの最後のアイテムをリストの一番下に置くことです
私はたくさん検索しましたが、getView関数のconvertViewパラメーターで設定することになっている場合、それを行うためのViewクラスメソッドが見つかりませんでした。
それで、それを行う方法はありますか?
だから私はこのようなものが欲しい: