up vote 4 down vote favorite
2
share [g+] share [fb]

I want to make a layout similar to this one:

www.ImageBanana.net - layout.png

Four square buttons on the screen - each of those using half of the screen with/screen height (whichever is smaler). Independent of screen size/resolution.

I already tried to achieve this by using a LinearLayoutbut the buttons are ending up using the correct width, but still having the height of the background (not square any more).

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <Button android:layout_height="wrap_content" style="@style/CKMainButton"
        android:layout_width="fill_parent" android:text="@string/sights"
        android:id="@+id/ApplicationMainSight" android:layout_toLeftOf="@+id/ApplicationMainEvent"></Button>

    <Button android:layout_height="wrap_content" style="@style/CKMainButton"
        android:layout_width="fill_parent" android:text="@string/sights"
        android:id="@+id/ApplicationMainSight" android:layout_toLeftOf="@+id/ApplicationMainEvent"></Button>
</LinearLayout>

<LinearLayout android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <Button android:layout_height="wrap_content" style="@style/CKMainButton"
        android:layout_weight="1" android:layout_width="fill_parent"
        android:text="@string/usergenerated" android:id="@+id/ApplicationMainUserGenerated"></Button>
    <Button android:layout_height="wrap_content" style="@style/CKMainButton"
        android:layout_weight="1" android:layout_width="fill_parent"
        android:text="@string/tours" android:id="@+id/ApplicationMainTour"></Button>
</LinearLayout>
</LinearLayout>

It's looking like this: www.ImageBanana.net - layout2.png

How can i acchieve the Layout to look like the image at the top above?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;

public class SquareLayout extends LinearLayout {

public SquareLayout(Context context) {
    super(context);
}

public SquareLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
}

 @Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

    int width = MeasureSpec.getSize(widthMeasureSpec);
    int height = MeasureSpec.getSize(heightMeasureSpec);

    if (width > (int)(mScale * height + 0.5)) {
        width = (int)(mScale * height + 0.5);
    } else {
        height = (int)(width / mScale + 0.5);
    }

    super.onMeasure(
            MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
            MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY)
    );
}
}
link|improve this answer
This worked great for me. Thanks! – Nick Sep 14 '10 at 19:22
1  
what is the mScale in your sample? – Mannaz May 19 '11 at 9:47
feedback

ok, here's a revised example:

<?xml version="1.0" encoding="utf-8"?>
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent" android:layout_width="fill_parent">
    <RelativeLayout android:id="@+id/magaLoginLayout"
        android:layout_height="fill_parent" android:layout_width="fill_parent">
        <Button android:text="@+id/Button01" android:id="@+id/Button01"
            android:layout_width="160dip" android:layout_height="160dip" android:layout_marginTop="20dip"></Button>
        <Button android:text="@+id/Button03" android:layout_below="@+id/Button01" android:id="@+id/Button03"
            android:layout_alignLeft="@+id/Button01" android:layout_height="160dip" android:layout_width="160dip"></Button>
        <Button android:text="@+id/Button04" android:layout_below="@+id/Button01" android:id="@+id/Button04"
            android:layout_toRightOf="@+id/Button03" android:layout_height="160dip" android:layout_width="160dip"></Button>
        <Button android:text="@+id/Button02" android:id="@+id/Button02" android:layout_width="wrap_content"
            android:layout_toRightOf="@+id/Button01" android:layout_alignTop="@+id/Button01" android:layout_alignParentRight="true" android:layout_height="160dip"></Button>


</RelativeLayout>

</ViewFlipper>

alt text

link|improve this answer
can you give an example? – Mannaz Jun 1 '10 at 10:42
i think you misunderstood me - my goal was not the alignance (which was already working) but the scaling of the buttons. I want every row of two buttons be as wide as the screen is, so your answer isnt the right one. sry. – Mannaz Jun 1 '10 at 11:26
i've revised the example... – Reflog Jun 1 '10 at 11:34
sorry but setting the with to an absolute size doesnt work for me - it has to be screen size/orientation independent – Mannaz Jun 1 '10 at 11:56
feedback

My solution is similar to the first one, however, I do the resizing in the onLayout method. Don't know which one is better.

For convenience I've wrapped my solution in a nice Android Library, see https://github.com/ronaldsteen/Android-SquareLayout-Library

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.