「Android/ListView/カスタム/記事」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「 ==記事サンプル== 例)タイトルを2カラムに分けて表示するようなリストを作る activity_main.xmlに以下を追加 <ListView android...」) |
|||
| (同じ利用者による、間の3版が非表示) | |||
| 行7: | 行7: | ||
android:id="@+id/sample_listview" | android:id="@+id/sample_listview" | ||
android:layout_width="match_parent" | android:layout_width="match_parent" | ||
| − | android:layout_height=" | + | android:layout_height="match_parent" /> |
samplelist_item.xml | samplelist_item.xml | ||
<pre> | <pre> | ||
| 行41: | 行41: | ||
SampleListItem.java | SampleListItem.java | ||
<pre> | <pre> | ||
| − | |||
public class SampleListItem { | public class SampleListItem { | ||
| − | |||
private String mTitle = null; | private String mTitle = null; | ||
public SampleListItem() {}; | public SampleListItem() {}; | ||
| − | public SampleListItem( | + | public SampleListItem(String title) { |
| − | + | ||
mTitle = title; | mTitle = title; | ||
| − | |||
| − | |||
| − | |||
| − | |||
} | } | ||
public void setmTitle(String title) { | public void setmTitle(String title) { | ||
mTitle = title; | mTitle = title; | ||
| − | |||
| − | |||
| − | |||
| − | |||
} | } | ||
| 行101: | 行90: | ||
} | } | ||
SampleListItem item = mItems.get(position); | SampleListItem item = mItems.get(position); | ||
| − | |||
| − | |||
TextView title = (TextView)view.findViewById(R.id.title); | TextView title = (TextView)view.findViewById(R.id.title); | ||
title.setText(item.getTitle()); | title.setText(item.getTitle()); | ||
| 行114: | 行101: | ||
ArrayList<SampleListItem> listItems = new ArrayList<>(); | ArrayList<SampleListItem> listItems = new ArrayList<>(); | ||
for (int i = 0; i < 4; i++) { | for (int i = 0; i < 4; i++) { | ||
| − | + | SampleListItem item = new SampleListItem("sample data No. " + String.valueOf(i)); | |
| − | SampleListItem item = new SampleListItem( | + | |
listItems.add(item); | listItems.add(item); | ||
} | } | ||
2018年12月14日 (金) 14:53時点における最新版
記事サンプル
例)タイトルを2カラムに分けて表示するようなリストを作る
activity_main.xmlに以下を追加
<ListView
android:id="@+id/sample_listview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
samplelist_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="70dp"
android:textColor="#000"
android:padding="5dp"
android:gravity="center_vertical"
android:maxLines="1"
android:text="title1"/>
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="70dp"
android:textColor="#000"
android:padding="5dp"
android:gravity="center_vertical"
android:maxLines="1"
android:text="description1"/>
</LinearLayout>
SampleListItem.java
public class SampleListItem {
private String mTitle = null;
public SampleListItem() {};
public SampleListItem(String title) {
mTitle = title;
}
public void setmTitle(String title) {
mTitle = title;
}
public String getTitle() {
return mTitle;
}
}
SampleListAdapter.java
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import java.util.List;
public class SampleListAdapter extends ArrayAdapter<SampleListItem> {
private int mResource;
private List<SampleListItem> mItems;
private LayoutInflater mInflater;
public SampleListAdapter(Context context, int resource, List<SampleListItem> items) {
super(context, resource, items);
mResource = resource;
mItems = items;
mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view;
if (convertView != null) {
view = convertView;
}
else {
view = mInflater.inflate(mResource, null);
}
SampleListItem item = mItems.get(position);
TextView title = (TextView)view.findViewById(R.id.title);
title.setText(item.getTitle());
return view;
}
}
MainActivity.javaのonCreateに追加
ListView listView = (ListView)findViewById(R.id.sample_listview);
ArrayList<SampleListItem> listItems = new ArrayList<>();
for (int i = 0; i < 4; i++) {
SampleListItem item = new SampleListItem("sample data No. " + String.valueOf(i));
listItems.add(item);
}
SampleListAdapter adapter = new SampleListAdapter(this, R.layout.samplelist_item, listItems);
listView.setAdapter(adapter);
