我在扩展Fragment的类中使用了recyclelerview。但是什么都没有显示我在类里面的StringRequest onResponse函数中调用了recyclelerview。以下是我的代码。谁能帮助我解决这个问题。
调用ChatMessageGroups的构造函数,但onCreateViewHolder()& onBindViewHolder()不是。 getItemCount()也返回0以上。
ChatGroups.java
public class ChatGroups extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
final View view = inflater.inflate(R.layout.activity_chat_groups, container, false);
final RequestQueue queue = Volley.newRequestQueue(view.getContext());
StringRequest strReq = new StringRequest(Request.Method.POST, URL,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try
{
JSONObject jsonResponse = new JSONObject(response);
RecyclerView recyclerView = (RecyclerView) view.findViewById(R.id.recycler_view_chat_groups);
ChatMessageGroups mAdapter = new ChatMessageGroups(jsonResponse.getString("groups"));
RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getActivity(),LinearLayoutManager.HORIZONTAL,false);
recyclerView.setLayoutManager(mLayoutManager);
recyclerView.setAdapter(mAdapter);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(getActivity(), error.getMessage(), Toast.LENGTH_LONG).show();
}
}) {
@Override
protected HashMap<String, String> getParams() {
HashMap<String, String> details = new HashMap<String, String>();
details.put("key", session.getKey());
return details;
}
};
queue.add(strReq);
return inflater.inflate(R.layout.activity_chat_groups, container, false);
}
}
ChatMessageGroups.java
public class ChatMessageGroups extends RecyclerView.Adapter<ChatMessageGroups.MyViewHolder> {
private final JSONArray messages;
class MyViewHolder extends RecyclerView.ViewHolder {
TextView group_name;
MyViewHolder(View view) {
super(view);
group_name = (TextView) view.findViewById(R.id.group_name);
}
}
ChatMessageGroups(JSONArray messages) {
this.messages = messages;
}
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext()).inflate(R.layout.activity_chat_groups_list, parent, false);
return new MyViewHolder(itemView);
}
@Override
public void onBindViewHolder(MyViewHolder holder, int position)
{
try
{
HashMap<String, String> maps = (HashMap<String, String>) messages.get(position);
for(HashMap.Entry<String, String> v: maps.entrySet())
{
String key = String.valueOf(v.getKey());
String value = String.valueOf(v.getValue());
holder.group_name.setText(value);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
@Override
public int getItemCount() {
return messages.length();
}
}
activity_chat_groups_list.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/group_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:layout_margin="5dp"
android:textColor="@color/black"
android:visibility="gone"/>
</LinearLayout>
activity_chat_groups.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_chat_groups"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="55dp"
android:scrollbars="vertical"/>
</LinearLayout>
答案 0 :(得分:0)
无法在片段类
中显示recyclerview内容
在onBindViewHolder
中,未显示任何内容。这就是你没有看到任何东西的原因。
答案 1 :(得分:0)
在您的第一个代码中,有一个:
StringRequest strReq = new StringRequest(Request.Method.POST
相反POST,它应该是GET?
答案 2 :(得分:0)
在适配器类中使消息变量为静态。
答案 3 :(得分:0)
做一些不同的事情:
初始化RecyclerView
正文中的Adapter
,LayoutManager
,onCreateView
等。
以这种方式制作RecyclerView和Adapter成员变量,您将能够从侦听器引用适配器,而不会发出关于它的最终消息......
创建适配器时,将其传递给空JSONArray
。
所有初始化调用都在onCrateView()
中完成。
第二个添加,一个方法
public void changeMessages(JSONArray messages){
this.messages = messages;
this.notifyDataSetChanged();
}
给你的adapeter。
最后在Volley
Response.Listener
中,通过使用新的JSONArray
调用上述方法来接收数据并替换适配器中的JSONArray
。
答案 4 :(得分:0)
得到了......
更改了返回inflater.inflate(R.layout.activity_chat_groups,container,false);返回视图;
它开始工作了。