web-dev-qa-db-ja.com

GridLayoutManager-列幅はそれ自体の最大の子をラップします

RecyclerView内にHorizontalScrollViewを取得しました。GridLayoutManagerを使用してください。これは問題ありませんが、1つのことはまだ気になります。すべての列の幅は同じです(私が想定する最大のセル幅に基づいていますか?)。この特定の列の最大のセルに一致するように列の幅を折り返すことはできませんか?

これは次のようになります。

enter image description here

オレンジ色の部分は、セルのビューによって取られた部分です。


[〜#〜]編集[〜#〜]

私は私が何を期待しているのかを明確にするように頼みました。例は言葉よりも優れています。ここでは、GridLayoutManagerを使用したRecyclerViewのスクリーンショットを見ることができます。各アイテムは、10〜40文字のテキストをランダムに含む単純なTextViewです。前述のように、RecyclerViewはHorizo​​ntalScrollView内にあります。この列のアイテムは幅全体を満たすことができないにもかかわらず、すべての列の幅が同じであることがわかります。私が望むのは、それらの無駄な空のスペースを削除し、各列が自身の最大の子の幅と一致する異なるサイズの列を持つことです。

enter image description here

この動作をテストしたい場合は、Githubにアップロードしたこのリポジトリを複製できます。 https://github.com/ShargotthDev/TestGrid

尋ねられたように、これが私のXMLレイアウトです(非常に基本的です):

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

    <HorizontalScrollView
        Android:id="@+id/gameplay_hotizontalScroll_ScrollView"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
        Android:layout_marginTop="70dp">

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

    </HorizontalScrollView>

</RelativeLayout>

EDIT 2

セルの一部がスパンサイズ> 1である可能性があり、LayoutManagerが垂直であるため、これらのセルが垂直ではなく水平方向により多くの場所を占めるようにする必要があることを述べたはずです(自分が理解できるかどうかはわかりません)。

御時間ありがとうございます !

12
MHogge

RecyclerViewをHorizo​​ntalScrollViewに配置する必要はありません。以下のコードを参照してください。

public class MainActivity extends AppCompatActivity {

    String[] list = new String[]{"Some text goes here", "Some small", "text", "goes here", "Some", "very large text", "goes here",
            "Some text goes here", "Some small", "text", "goes here", "Some", "very large text", "goes here"};
    RecyclerView grid;
    GridAdapter adapter;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        grid = (RecyclerView)findViewById(R.id.grid);
        grid.setLayoutManager(new GridLayoutManager(this, 2, LinearLayoutManager.HORIZONTAL, false));
        grid.setHasFixedSize(true);
        adapter = new GridAdapter(list);
        grid.setAdapter(adapter);
    }
}

アダプタークラス

public class GridAdapter extends RecyclerView.Adapter<GridAdapter.ViewHolder>{
    String[] mList;
    public GridAdapter(String[] list) {
        mList = list;
    }

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

    @Override
    public void onBindViewHolder(ViewHolder holder, int position) {
        holder.bind(mList[position]);
    }

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

    public class ViewHolder extends RecyclerView.ViewHolder {
        TextView textView;
        public ViewHolder(View itemView) {
            super(itemView);
            textView = (TextView)itemView.findViewById(R.id.text);
        }

        public void bind(String s) {
            textView.setText(s);
        }
    }
}

row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:orientation="vertical" Android:layout_width="wrap_content"
    Android:layout_height="match_parent"
    Android:padding="10dp">
    <TextView Android:id="@+id/text"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content" />
</LinearLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:id="@+id/activity_main"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:paddingBottom="@dimen/activity_vertical_margin"
    Android:paddingLeft="@dimen/activity_horizontal_margin"
    Android:paddingRight="@dimen/activity_horizontal_margin"
    Android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="cab.suresh.gridlayoutexample.MainActivity">

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

編集このようにNestedScrollView内にRecyclerViewを配置します

<Android.support.v4.widget.NestedScrollView
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:scrollbars="none">
    <Android.support.v7.widget.RecyclerView
        Android:id="@+id/grid"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"/>
</Android.support.v4.widget.NestedScrollView>

このようにspanCountの数を設定します

spanCount = 8;

grid.setLayoutManager(new GridLayoutManager(this, spanCount, LinearLayoutManager.HORIZONTAL, false));
8
Suresh Kumar