java - 在fragment中依次显示两个Listview

标签 java android android-layout listview

我使用下面的代码用 ListView 填充我的 fragment ,效果很好。 现在我需要分离 ListView 并在其间添加 TextView 。因此,我现在需要显示两个 ListView,Listview A 和 ListView B 以及每个单独的数据,即 ListView A 将显示数据 A,ListView B 将显示数据 B。

我想仅在Listview A结束时启动Listview B,而不是像下图一样占据一半的长度

enter image description here

并为Listview B单独应用onClicklistener,与A类似。

我怎样才能做到这一点..??

提前致谢。

我的 Fragment.java 文件是,

package com.nepalpolice.cdp;

import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;


/**
 * Created by Sagar on 2017/09/23.
 */


public class club extends Fragment  {
    // Array of strings storing country names
    String[] countries = new String[]{
            "Royal Physicist of CDP",
            "MSC Physics of CDP",
            "Msc PHYSICS 2073B.S BATCH ",

    };

    // Array of integers points to images stored in /res/drawable-ldpi/
    int[] flags = new int[]{
            R.drawable.rpl,
            R.drawable.cdpl,
            R.drawable.mscl,

    };

    // Array of strings to store currencies
    String[] currency = new String[]{
            "This page is Dedicated with Informative trolls and memes.",
            "This Page is Dedicated for information",
            "Join this page for news and Notices",

    };

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_club, container, false);
// Each row in the list stores country name, currency and flag
        List<HashMap<String, String>> aList = new ArrayList<HashMap<String, String>>();

        for (int i = 0; i < 3; i++) {
            HashMap<String, String> hm = new HashMap<String, String>();
            hm.put("txt", "Country : " + countries[i]);
            hm.put("cur", "Currency : " + currency[i]);
            hm.put("flag", Integer.toString(flags[i]));
            aList.add(hm);
        }

        // Keys used in Hashmap
        String[] from = {"flag", "txt", "cur"};

        // Ids of views in listview_layout
        int[] to = {R.id.flag, R.id.txt, R.id.cur};

        // Instantiating an adapter to store each items
        // R.layout.listview_layout defines the layout of each item
        SimpleAdapter adapter = new SimpleAdapter(getActivity(), aList, R.layout.listview_layout, from, to);
        // Getting a reference to listview of main.xml layout file
        ListView listView = (ListView) view.findViewById(R.id.listview);
        // Setting the adapter to the listView
        listView.setAdapter(adapter);
        listView.setOnItemClickListener(itemClickListener);
        return view;
    }

// Setting the adapter to the listView


    // Item Click Listener for the listview
    OnItemClickListener itemClickListener = new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View container, int position, long id) {
            // Getting the Container Layout of the ListView
            if(position == 0/*or any other position*/){
                Fragment fragment = new royal();
                FragmentManager fragmentManager = getFragmentManager();
                fragmentManager.beginTransaction().replace(R.id.fragment_frame, fragment).addToBackStack(null).commit();
            }
            else if(position == 1){
                Fragment fragment = new cdp();
                FragmentManager fragmentManager = getFragmentManager();
                fragmentManager.beginTransaction().replace(R.id.fragment_frame, fragment).addToBackStack(null).commit();

            } // etc...

            else if(position == 2){
                Fragment fragment = new msc();
                FragmentManager fragmentManager = getFragmentManager();
                fragmentManager.beginTransaction().replace(R.id.fragment_frame, fragment).addToBackStack(null).commit();

            } // etc...
        }
    };
}

我的listview_layout.xml文件是

<?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:orientation="horizontal" >

    <ImageView
        android:id="@+id/flag"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/hello"
        android:paddingTop="10dp"
        android:paddingRight="10dp"
        android:paddingBottom="10dp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/txt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="15dp" />

        <TextView
            android:id="@+id/mero"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10px"
            android:textAppearance="?android:attr/textAppearanceSmall"
            />

        <TextView
            android:id="@+id/cur"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="10dp" />


    </LinearLayout>
</LinearLayout>

我的fragment_club.xml 文件是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <ListView
        android:id="@+id/listview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

</LinearLayout>

最佳答案

我不会推荐你所做的事情。最好使用recyclerview,它比普通listview更强大。首先,您必须使用 header 构建 recyclerview,请参阅以下帖子:https://inducesmile.com/android/add-header-to-android-recyclerview/

根据您的要求,您希望在用户滚动到达 recyclerview 末尾时加载下一组数据,因此您必须添加滚动监听器,以告知您是否到达 recyclerview 末尾。您可以引用以下帖子来实现此目的:

https://medium.com/@ayhamorfali/android-detect-when-the-recyclerview-reaches-the-bottom-43f810430e1e

一旦您知道何时到达回收器 View 的末尾,则必须将新数据添加到数据集中并刷新回收器 View 。

关于java - 在fragment中依次显示两个Listview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49334794/

相关文章:

android - 查看其父级高度和宽度的一半

java - Dropwizard TLS 和 SSL : deactivate SSLv3

java - java 是否在 for 循环中缓存数组引用?

java - 使用Java将图像上传到MySql数据库

java - 为什么发送 Bitmap 时崩溃

java - 声音效果/操作?

android - 背景图像在android布局中不重复

java.lang.IllegalStateException : attempt to re-open an already-closed?

java - 如何在 WebView 上设置渐变背景

android - 图像的质量与原始图像不同