Одиночная строка показывает Insight RecyclerView - PullRequest
0 голосов
/ 27 апреля 2019

У меня есть просмотрщик и он показывает только одну запись вместо двух. Я искал много постов в Google и обнаружил, что изменил высоту элементов списка с «match_parent» на «Wrap_Content», поэтому я сделал то же самое, но все равно он показывает отдельные записи.

Активность Mumbai_Male

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MumbaiMale">


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

    <ImageView
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:id="@+id/myImg"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="10dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/name"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/age"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/education"/>

    </LinearLayout>



</LinearLayout>


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

        <android.support.v7.widget.RecyclerView
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="@dimen/activity_vertical_margin"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:scrollbars="vertical"
            android:id="@+id/recyclerView" />

</LinearLayout>

CustomeAdapter:

package com.maheshwaghela.mahesh.rukhivivah;

import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

public class CustomAdapter extends 
RecyclerView.Adapter<CustomAdapter.ViewHolder> {


private MumbaiMale.IconData[] data;

public CustomAdapter (MumbaiMale.IconData[] data) {
    this.data = data;
}


@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
    View listItem= layoutInflater.inflate(R.layout.activity_mumbai_male, parent, false);
    ViewHolder viewHolder = new ViewHolder(listItem);
    return viewHolder;
}

@Override
public void onBindViewHolder(ViewHolder holder, int position) {
    holder.name.setText(data[position].getPname());
    holder.age.setText(data[position].getPage());
    holder.education.setText(data[position].getPedu());
    holder.imageView.setImageResource(data[position].getImgId());
}

@Override
public int getItemCount() {
    return data.length;
}



public static class ViewHolder extends RecyclerView.ViewHolder {
    public ImageView imageView;
    public TextView name;
    public TextView age; public TextView education;

    public ViewHolder(View itemView) {
        super(itemView);
        this.imageView = (ImageView) itemView.findViewById(R.id.myImg);
        this.name = (TextView) itemView.findViewById(R.id.name);
        this.age=(TextView) itemView.findViewById(R.id.age);
        this.education=(TextView) itemView.findViewById(R.id.education);
      }
   }

}

Mumbai_Male.Java

package com.maheshwaghela.mahesh.rukhivivah;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;


public class MumbaiMale extends  AppCompatActivity {



  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_mumbai_male);


    IconData[] data = new IconData[] {
            new IconData("Name:- Mahesh K. Waghela","Age:-45","Education:-B.com", R.drawable.dilip333),
            new IconData ("Name:- Sunil K. Waghela","Age:-33","Education:-S.S.C.",R.drawable.hiteshhh)

    };

    RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recyclerView);
    CustomAdapter adapter=new CustomAdapter(data);
    recyclerView.setHasFixedSize(true);
    recyclerView.setLayoutManager(new LinearLayoutManager(this));
    recyclerView.setAdapter(adapter);



}

public class IconData {
    private String pname;
    private String page;
    private String pedu;
    private int imgId;

    public IconData(String name, String age, String edu, int imgId) {
        this.pname = name;
        this.page= age;
        this.pedu= edu;
        this.imgId = imgId;
    }

    public String getPname()
    {
        return pname;
    }

    public void setPname(String name)
    {
        this.pname = name;
    }


    public String getPage()
    {
        return  page;
    }

    public void setPage(String age)
    {
        this.page=age;
    }


    public String getPedu()
    {
        return pedu;
    }

    public void setMyPedu(String edu)
    {
        this.pedu=edu;
    }


    public int getImgId()
    {
        return imgId;
    }

    public void setImgId(int imgId)
    {
        this.imgId = imgId;
    }
}

}

Где я ошибаюсь, не знаю, но он показывает отдельные записи вместо двух.

Ответы [ 2 ]

1 голос
/ 27 апреля 2019

Согласно вашему текущему коду, ваш RecyclerView будет отображать обе записи для wrap_content и match_parent. Вы можете увидеть вторую запись, если прокрутите свой список.

Также вы получаете этот тип проводного вывода, потому что вы используете ту же компоновку, что и макет действия и макет элемента адаптера. Таким образом, адаптер будет связывать изображение, имя и т. Д., Но он также будет отображать пустой RecyclerView для каждой строки.

Таким образом, решение состоит в том, чтобы просто сохранить ваш RecyclerView внутри activity_mumbai_male.xml и создать новый XML-файл для элемента RecyclerView и накачать этот XML-файл макета внутри вашего адаптера. Ваша проблема будет исправлена.

Пожалуйста, проверьте ниже исправленный код.

activity_mumbai_male.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MumbaiMale">

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

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingTop="@dimen/activity_vertical_margin"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:scrollbars="vertical" />

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

item_list.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="wrap_content"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/myImg"
        android:layout_width="90dp"
        android:layout_height="90dp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="20dp"
        android:orientation="vertical">

        <TextView
            android:id="@+id/name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <TextView
            android:id="@+id/age"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <TextView
            android:id="@+id/education"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </LinearLayout>

</LinearLayout>

Замените ваш код моим кодом в CustomAdapter.xml

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
    View listItem = layoutInflater.inflate(R.layout.item_list, parent, false);
    ViewHolder viewHolder = new ViewHolder(listItem);
    return viewHolder;
}
0 голосов
/ 27 апреля 2019

Вы используете RecyclerView, но я не смог найти ваш xml относительно Row, вы установили текст в Simple Single TextView, который вы указали в вашем activity_mumbai.xml. в виде строки означает один элемент вашего RecyclerView и распечатывает ваши данные XML в этом представлении.

row_item_view.xml

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <ImageView
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:id="@+id/myImg"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="10dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/name"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/age"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/education"/>

    </LinearLayout>



</LinearLayout>

и измените SetContentView в своем пользовательском адаптере с этим новым XML.

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
    View listItem= layoutInflater.inflate(R.layout.row_item_view, parent, false);
    ViewHolder viewHolder = new ViewHolder(listItem);
    return viewHolder;
}

Это исправит вашу проблему.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...