web-dev-qa-db-ja.com

FlexboxLayoutManagerを使用したRecyclerViewアイテムの中央揃え

RecyclerViewを使用してすべてのFlexboxLayoutManagerアイテムを中央揃えするにはどうすればよいですか?次のようにアイテムを中央に配置する必要があります。

Correctly centered items

私は成功せずに試しました: My attempt, incorrect

レイアウトマネージャーを設定するコード:

_val layoutManager = FlexboxLayoutManager(this)
        layoutManager.setFlexWrap(FlexWrap.WRAP)
        layoutManager.setFlexDirection(FlexDirection.ROW)
        layoutManager.setJustifyContent(JustifyContent.FLEX_START)
        layoutManager.setAlignItems(AlignItems.FLEX_START)

        val adapter = TagAdapter(tags)
        tagRecyclerView.adapter = adapter
        tagRecyclerView.layoutManager = layoutManager
_

(_layoutManager.setAlignItems(AlignItems.FLEX_START_)をlayoutManager.setAlignItems(AlignItems.CENTER)に設定しようとしましたが、機能しませんでした...

12
felipe.rce

これを試して

活動コード

public class TestActivity extends AppCompatActivity {


    RecyclerView recyclerView;
    ArrayList<String> arrayList = new ArrayList<>();
    FlexboxAdapter adapter;


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


        recyclerView = findViewById(R.id.recyclerView);
        initArray();
        FlexboxLayoutManager layoutManager = new FlexboxLayoutManager(this);
        layoutManager.setFlexDirection(FlexDirection.ROW);
        layoutManager.setJustifyContent(JustifyContent.CENTER);
        layoutManager.setAlignItems(AlignItems.CENTER);
        recyclerView.setLayoutManager(layoutManager);
        adapter = new FlexboxAdapter(this, arrayList);
        recyclerView.setAdapter(adapter);

    }

    private void initArray() {

        arrayList.add("Nileshfgfdgfdgfdggfgfgfdgvcb");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nileshfgfdgfdgfdggfgcvbcvb");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nileshfgfdgfdgfdggfgfdgdfgcvb");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nileshfgfdgfdgfdggfgcvb");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nileshfgfdgfdgfdggfgdfgdfgcvb");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");
        arrayList.add("Nileshfgfdgfdgfdggfgdfgcvb");
        arrayList.add("Nilesh");
        arrayList.add("Nilesh");


    }
}

アダプタコード

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

    Context context;
    ArrayList<String> arrayList = new ArrayList<>();

    public FlexboxAdapter(Context context, ArrayList<String> arrayList) {
        this.context = context;
        this.arrayList = arrayList;
    }

    @Override
    public FlexboxAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(context).inflate(R.layout.custom_layout, parent, false);
        return new ViewHolder(view);
    }

    @Override
    public void onBindViewHolder(FlexboxAdapter.ViewHolder holder, int position) {

        holder.title.setText(arrayList.get(position));


    }

    @Override
    public int getItemCount() {
        return arrayList.size();
    }

    public class ViewHolder extends RecyclerView.ViewHolder {
        TextView title;

        public ViewHolder(View itemView) {
            super(itemView);
            title = itemView.findViewById(R.id.tvTitle);
        }
    }
}

カスタムレイアウト

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:app="http://schemas.Android.com/apk/res-auto"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:gravity="center">


    <TextView
        Android:id="@+id/tvTitle"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_gravity="center"
        Android:gravity="center"
        Android:padding="5dp"
        Android:text="Nilesh"
        Android:textColor="#000"
        Android:textSize="20sp"
        Android:textStyle="bold" />

</LinearLayout>

アクティビティレイアウト

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    Android:orientation="vertical"
    tools:context=".TestActivity">

    <Android.support.v7.widget.RecyclerView
        Android:id="@+id/recyclerView"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content" />


</LinearLayout>

[〜#〜]出力[〜#〜]

enter image description here

13
Nilesh Rathod

短い答え

layoutManager.setAlignItems(AlignItems.FLEX_START)を使用しています。これにより、アライメントが開始されます。

要件に合った以下の2つの配置のいずれかを使用する必要があります。

layoutManager.setAlignItems(AlignItems.CENTER)

または

layoutManager.setAlignItems(AlignItems.SPACE_AROUND)

注:

あなたがこれを言ったので

@MarcEstradaはい、機能しません

アイテムのレイアウト幅wrap_contentを維持してください。 (親を持つすべての子はwrap_contentの幅を持っている必要があります。)のようなAndroid:layout_width="wrap_content"

match_parent widthを使用すると、アイテムは中央揃えになりません。

1
Khemraj