如何将两个不同的列表组合到Android中的一个列表中

时间:2015-12-01 00:53:28

标签: java android realm

我有一个我想从json文件中显示的城市列表。我还有两个项目,#34;新城市","受欢迎的城市"。还有两个在“新城市”前面的形象"和#34;受欢迎的城市"。

我的问题是如何在活动中将两个不同的列表组合在一起。感谢。

// Load from file "cities.json" first time
if (mAdapter == null) {
    List<City> cities = null;
    try {
        cities = loadCities();
    } catch (IOException e) {
        e.printStackTrace();
    }

    // This is the GridView adapter
    ListAdapter = new CityAdapter(this);
    ListAdapter.setData(cities);
}

1 个答案:

答案 0 :(得分:2)

如果您想连接两个列表,请按照以下方式进行操作

List<City> cities = loadCities();
cities.addAll(loadFavoriteCities);
ListAdapter.setData(cities);

如果您希望在一个活动中显示两个不同的列表,则使用两个ListViewRecyclerView是解决方案;

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:orientation="horizontal">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/list1"/>

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/list2"/>
</LinearLayout>