skip to Main Content

Maximize the button in a gridlayout – Photoshop

I have an activity: <?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.GridLayout 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" app:rowCount="4" app:columncount="4"> <Button android:text="1" android:id="@+id/button1" app:layout_gravity="fill" app:layout_rowWeight="1" app:layout_columnWeight="1" app:layout_row="0" app:layout_column="0""/> <Button android:text="2" android:id="@+id/button2" app:layout_rowWeight="1" app:layout_columnWeight="1" app:layout_gravity="fill" app:layout_row="0" app:layout_column="1"/> <Button android:text="3" android:id="@+id/button3" app:layout_rowWeight="1" app:layout_columnWeight="1" app:layout_gravity="fill" app:layout_row="0" app:layout_column="2"/> <Button android:text="4"…

VIEW QUESTION
Back To Top
Search