21
গ্রিডলাউট (গ্রিডভিউ নয়) কীভাবে সমস্ত শিশুকে সমানভাবে প্রসারিত করা যায়
আমি ভিতরে 2 বোতামের একটি 2x2 গ্রিড রাখতে চাই। এটি কেবলমাত্র আইসিএস তাই আমি দেওয়া নতুন গ্রিডলাউটটি ব্যবহার করার চেষ্টা করছি। আমার লেআউটের এক্সএমএলটি এখানে: <?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" android:layout_row="0" android:layout_column="1" android:textSize="14dip" /> …