Questions marquées «android-gridlayout»

21
GridLayout (pas GridView) comment étirer uniformément tous les enfants
Je veux avoir une grille 2x2 avec des boutons à l'intérieur. Ce n'est qu'ICS donc j'essaie d'utiliser le nouveau GridLayout donné. Voici le XML de ma mise en page: <?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/favorites_grid" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00" android:rowCount="2" android:columnCount="2"> <Button android:text="Cell 0" android:layout_row="0" android:layout_column="0" android:textSize="14dip" /> <Button android:text="Cell 1" …

5
GridLayout et Row / Column Span Woe
L'article du blog des développeurs Android présentantGridLayout ce diagramme montre comment les intervalles affectent l'allocation d'index automatique: J'essaye d'implémenter réellement cela en utilisant un GridLayout. Voici ce que j'ai jusqu'à présent: <android.support.v7.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res/com.commonsware.android.gridlayout" android:layout_width="fill_parent" android:layout_height="fill_parent" app:orientation="horizontal" app:columnCount="8"> <Button app:layout_columnSpan="2" app:layout_rowSpan="2" android:layout_gravity="fill_horizontal" android:text="@string/string_1"/> <Button app:layout_columnSpan="2" android:layout_gravity="fill_horizontal" android:text="@string/string_2"/> <Button app:layout_rowSpan="4" android:text="@string/string_3"/> …

12
RecyclerView GridLayoutManager: comment détecter automatiquement le nombre de span?
Utilisation du nouveau GridLayoutManager: https://developer.android.com/reference/android/support/v7/widget/GridLayoutManager.html Il faut un nombre de travées explicite, donc le problème devient maintenant: comment savoir combien de "travées" correspondent par ligne? C'est une grille, après tout. Il doit y avoir autant de portées que le RecyclerView peut en contenir, en fonction de la largeur mesurée. En …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.