Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating a Dialog Box on Holo Theme and want to follow the OS default way of displaying the buttons. So far I have created the dialog box but the buttons don't render in the way it does in the apps done in Holo for ICS. How can I do this? My intended look & feel is No. 3rd in this image and I am able to reach till here Notice the Signup and Login buttons

share|improve this question

3 Answers

a bit late, but maybe someone is still interested in that.

this works pretty good for me.

...
<View
    android:layout_width="fill_parent"
    android:layout_height="1dip"
    android:background="?android:attr/dividerVertical" />
<LinearLayout 
    style="?android:attr/buttonBarStyle"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:paddingTop="0dip"
    android:paddingLeft="2dip"
    android:paddingRight="2dip"
    android:measureWithLargestChild="true">

    <Button 
        android:id="@+id/cancel"
        style="?android:attr/buttonBarButtonStyle"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@android:string/cancel"/>
    <Button 
        android:id="@+id/ok"
        style="?android:attr/buttonBarButtonStyle"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@android:string/ok"/>
</LinearLayout>
...

the activity that loads this layout needs the Holo.Dialog theme.

android:theme="@android:style/Theme.Holo.Dialog"
share|improve this answer
Thanks a ton! Your solution works perfectly. – Groppe Dec 6 '12 at 19:12
This should be the accepted answer... – Hameno Dec 14 '12 at 10:01
up vote 9 down vote accepted

This is what works:

<LinearLayout
    android:id="@+id/buttonHolder"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:orientation="horizontal"
    >

    <Button
        android:id="@+id/cmdSignup"
        style="@android:style/Widget.Holo.Light.Button.Borderless.Small"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/Signup" />

    <Button
        android:id="@+id/cmdLogin"
        style="@android:style/Widget.Holo.Light.Button.Borderless.Small"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/Login" />
</LinearLayout>

The property style="@android:style/Widget.Holo.Light.Button.Borderless.Small" gives the flat look and feel, and the 50% weight distribution is because of combining 100$ sizing of LinearLayout by android:layout_width="match_parent" andandroid:layout_weight="1"`for buttons

share|improve this answer
Thanks for the answer! Just wondering how or if you were able to get the light grey border around the buttons as shown in your first screenshot? Thanks – Dittimon Jun 21 '12 at 7:18
I didn't get it with this markup alone. I was in a rush.. very bad rush to complete the project and I didn't care to see why I didn't get it and I didn't correct it. In a weeks time, they asked to shift it from ICS to GB and I had to manually create all this so effort wasted and long forgotten :) – kishu27 Jun 22 '12 at 14:19
but yeah, if I had to do it again, I'd go to download one of the examples from Android Dev site and check it out – kishu27 Jun 22 '12 at 14:20
3  
You shouldn't be referencing the style directly, use style="?android:attr/borderlessButtonStyle" Which is used in the docs developer.android.com/guide/topics/ui/controls/button.html – smith324 Nov 23 '12 at 19:34

You can set the theme through the Android Manifest xml or inside the Activity's onCreate with setTheme(android.R.style.Theme_Holo);

The buttons size is not related to the theme itself. The size is up to your xml definitions. In the image you sent, it seems that the buttons received the Holo theme so there's nothing wrong here...

Here's an xml layout that will stretch the buttons to fill the whole dialog width:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        >
    <LinearLayout
                android:orientation="horizontal"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="5dip"
                >
                <Button
                    android:id="@+id/okButton"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="OK"
                />
                <Button
                    android:id="@+id/cancelButton"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="Cancel"
                />          
        </LinearLayout>
</LinearLayout>
share|improve this answer
I'm sorry but this doesn't work. I agree about the width, but I cannot get the flat look of the button on the dialog box – kishu27 Mar 21 '12 at 16:48
@kishu27 So the XML i wrote here fixed the buttons width but the buttons still don't get the Holo theme flat layout? – liorry Mar 21 '12 at 17:07
sadly not even the width :) I'm sorry.. I found out about the flat button style and will post the answer as soon as I fix the width issue. Strangely, your code should have worked but it isnt working and I can't think of anything else for the width – kishu27 Mar 21 '12 at 17:11
I think it the width worked fine as soon as I changed fill_parent to match_parent – kishu27 Mar 21 '12 at 17:24
1  
@kishu27 cool. at least my answer gave you the right direction :) glad you solve it. – liorry Mar 21 '12 at 17:26
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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