I have an activity in which I have 3 buttons placed alongside each other. I have used a subclass of Button that will resize the button text to prevent the text from wrapping. I would like the 3 buttons to share the same text size. In order to do this I intend to detect the button with the smallest text size and set the other 2 buttons to that text size.

The problem I have is knowing when the Activity has completed laying out its components so that I can reliably know that the resizing of the text has occurred. From the Android documentation it would appear that the latest notification in the lifecycle is onResume() but it appears that the layout hasn't completed at this point. Is there a way of receiving notification that the Activity layout has finished?

link|improve this question
I got no clue but maybe you can kind of do it manually - keep checking the components to see if they're null or if the text size has changed or something; figure out a criteria that tests if it's ready. – user826788 Jul 6 '11 at 15:29
feedback

7 Answers

You can use iswindow(). Overide it. It will be called just before onPause().

link|improve this answer
feedback

Perhaps you could set an OnLayoutChangeListener on your buttons (or the viewgroup containing the buttons) and do the font re-sizing there? I'm not sure if that gets called before or after the layout changes have taken effect...

link|improve this answer
The onLayoutChange method in OnLayoutChangeListener gets called after the layout has completed. However, this interface was only introduced in API 11 (3.0). – Charles Harley Jul 8 '11 at 9:44
feedback

From what I know there is not an event or something that tells you everything is loaded. What you maybe can do is at the end of the oncreate method start a AsyncTask which runs while the width of your last view is 0. When the layout is loaded, views will have an actually size instead of 0 so you know its loaded. In the callback from the ASyncTask you then can calculate the smallest button and determine the fontsize.

link|improve this answer
feedback

When I try to make horizontally stacked buttons, I just give them the layout_width of wrap_parent however give them the layout_weight of 1.

This way they all try to occupy as much space as available equally distributed by the parent layout.

A sample code would be something like this and I hope it helps:

<LinearLayout 
    android:id="@+id/buttons"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    >
    <Button 
        android:id="@+id/okButton"
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content"
        android:text="OK"
        android:layout_weight="1"
        />
    <Button 
        android:id="@+id/cancelButton"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content" 
        android:text="Cancel"
        android:layout_weight="1"
        />
</LinearLayout>

-serkan

link|improve this answer
feedback

You could try overriding Activity.onWindowFocusChanged(boolean) to reliably receive notification when the activity has become visible. You can then assume that the layout has completed. One problem you might have with this approach is the Activity will be visible to the user and thus if the button text is resized then the change in size will be briefly visible to the user.

link|improve this answer
feedback

Android will do the layout in two steps, measure and layout. Because you just want the size of the button you can use getMeasuredWidth instead of getWidth, as this will be available earlier.

I would recommend you to use a LinearLayout instead of manually trying to define the width of the buttons. Make sure android:weightSum is specified, especially if you're going for a non full width layout.

<LinearLayout 
    ...
    android:orientation="horizontal"
    android:weightSum="3"
    >
    <Button 
        ...
        android:layout_weight="1"
        />
    <Button 
        ...
        android:layout_weight="1"
        />
    <Button 
        ...
        android:layout_weight="1"
        />
</LinearLayout>
link|improve this answer
feedback

In order to know when a view's layout has completed, perhaps i would give it a runnable in the onCreate() method of my activity and then calling this runnable from View.onSizeChanged(). It should look like

public void onCreate() {
    view.setLayoutRunnable(new Runnable() {
    @Override
    public void run() {
        //do layout stuff...
    }
});

and then do the following in your view.

public Runnable myRunnable;
public void setLayoutRunnable(Runnable runner) {
    layoutRunner = runner;
}

@Override
public void onSizeChanged(int w, int h, int oldw, int oldh) {
    if (w > 0 && h > 0 && (w != oldw || h != oldh)) {
        if (myRunnable!= null) 
            myRunnable.run();
    }
}

Hope this helps.

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.