21
GridLayout (GridView नहीं) सभी बच्चों को समान रूप से कैसे बढ़ाएं
मैं एक बटन के साथ 2x2 ग्रिड रखना चाहता हूं। यह केवल आईसीएस है इसलिए मैं दिए गए नए ग्रिडलाइयूट का उपयोग करने की कोशिश कर रहा हूं। यहाँ मेरे लेआउट का XML है: <?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" …