我使用下面的代码用ListView填充我的片段,它工作正常。 现在我需要将Listview分开并在其间添加Textview。因此,我现在需要显示两个ListView,Listview A和ListView B以及每个单独的数据,即ListView A将显示数据A,ListView B将显示数据B.
我想在Listview A结束时启动Listview B而不是占用类似于下图的半长度
并单独为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>
答案 0 :(得分:0)
我不推荐你做的。最好使用recyclelerview,这比普通的listview更强大。首先,您必须使用标题构建recyclelerview,请参阅以下帖子:https://inducesmile.com/android/add-header-to-android-recyclerview/
根据您的要求,当用户滚动到达最终的Recyclerview时,您希望加载下一组数据,因此您必须添加滚动侦听器,告诉您是否已达到recyclerview结束。你可以在下面的帖子中找到这个:
https://medium.com/@ayhamorfali/android-detect-when-the-recyclerview-reaches-the-bottom-43f810430e1e
当您知道何时到达recyclerview结束时,您必须将新数据添加到数据集中并刷新Recyclerview。