Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have an XMl file that includes a ViewFlipper, and want to show the next view(in the viewflipper) after 3 seconds, but it doesn't shows after this period: XML:

<?xml version="1.0" encoding="UTF-8"?>
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/flipper" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <RelativeLayout android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TextView android:id="@+id/sipLabel" android:textSize="20sp"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
        <ImageView android:id="@+id/disconnected" android:src="@drawable/disconnected"
            android:layout_below="@id/sipLabel" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_weight="0.35"
            android:gravity="center" android:visibility="visible" />
    </RelativeLayout>
    <RelativeLayout android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TextView android:id="@+id/sipLabel" android:textSize="20sp"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
        <ImageView android:id="@+id/connected" android:src="@drawable/connected"
            android:layout_below="@id/sipLabel" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_weight="0.35"
            android:gravity="center" android:visibility="visible" />
    </RelativeLayout>
</ViewFlipper>

JAVA code:

public void onRegistrationDone(String localProfileUri, long expiryTime)
{
    updateStatus("Registered to server.");
    Log.d("SUCCEED", "Registration DONE");

    final ViewFlipper flipper = (ViewFlipper) findViewById(R.id.flipper);
    flipper.postDelayed(new Runnable()
    {
        public void run()
        {
            flipper.showNext();
        }
    }, 3000);
}

What is the problem ? why the next view doesn't shows ?

Thank you for your help.

share|improve this question
Ah okay i have @drawable/connected in the two views! however the textview doesn't displays in the second view, i just have the image! any idea ? Thanks. – androniennn May 1 '11 at 13:34
are you certain, that onRegistrationDone is running in the UI thread? If so, unless the updateStatus method doesn't throw an exception, this code works fine! – rekaszeru May 1 '11 at 15:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.