11

VerticalGridFragment を使用して、検索やタイトルを表示する必要のないグリッドのようなレイアウトでアイテムを表示しています。また、マージンなしで画面の上から行を開始したいと考えています。何か助けはありますか?下の画像の例

4

4 に答える 4

1

First of follow this steps to move the rows up which is by default given margins by Lean back Library.

1. Go to you SDK.

2. Inside SDK -> extras -> android -> support -> v17 -> leanback -> res -> values.

3. Inside values folder copy the dimens.xml inside your current project and copy to your projects res -> values folder.

Now you have the file name dimens.xml inside your values folder.

Now open the dimens.xml file which you have copied.

Change the value for property defined below. By default it will given 168dp around that. So make it less to decrease the top margin as i have given below.

<dimen name="lb_browse_rows_margin_top">35dp</dimen>

これで、行を の上部セクションの真下で分割できるようになりました Browse Fragment

于 2016-08-19T07:16:10.253 に答える