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 app which uses xmpp library to login to gmail account. It is done in OnCreate() method but in new thread. I have activity_main.xml as my main layout in which I have 2 views.

<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/viewFlipper1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout 
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ToggleButton
    android:id="@+id/toggleButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="33dp"
    android:layout_marginTop="24dp"
    android:text="ToggleButton" />

<ToggleButton
    android:id="@+id/toggleButton2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/toggleButton1"
    android:layout_alignBottom="@+id/toggleButton1"
    android:layout_centerHorizontal="true"
    android:text="ToggleButton" />

<ToggleButton
    android:id="@+id/toggleButton3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/toggleButton2"
    android:layout_alignBottom="@+id/toggleButton2"
    android:layout_alignParentRight="true"
    android:layout_marginRight="32dp"
    android:text="ToggleButton" />

<ToggleButton
    android:id="@+id/toggleButton4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/toggleButton1"
    android:layout_below="@+id/toggleButton1"
    android:layout_marginTop="32dp"
    android:text="ToggleButton" />

<ToggleButton
    android:id="@+id/toggleButton5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/toggleButton4"
    android:layout_alignBottom="@+id/toggleButton4"
    android:layout_alignRight="@+id/toggleButton2"
    android:text="ToggleButton" />

<ToggleButton
    android:id="@+id/toggleButton6"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/toggleButton5"
    android:layout_alignBottom="@+id/toggleButton5"
    android:layout_alignLeft="@+id/toggleButton3"
    android:text="ToggleButton" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/toggleButton4"
    android:layout_below="@+id/toggleButton4"
    android:layout_marginTop="54dp"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignRight="@+id/textView1"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="48dp"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView2"
    android:layout_below="@+id/textView2"
    android:layout_marginTop="60dp"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />
    </RelativeLayout>
    <RelativeLayout xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ToggleButton
        android:id="@+id/toggleButton7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="24dp"
        android:layout_marginTop="24dp"
        android:text="ToggleButton" />

    <ToggleButton
        android:id="@+id/toggleButton8"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/toggleButton7"
        android:layout_centerHorizontal="true"
        android:text="ToggleButton" />

    <ToggleButton
        android:id="@+id/toggleButton9"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/toggleButton8"
        android:layout_alignParentRight="true"
        android:layout_marginRight="28dp"
        android:text="ToggleButton" />

    <ToggleButton
        android:id="@+id/toggleButton10"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/toggleButton7"
        android:layout_below="@+id/toggleButton7"
        android:layout_marginTop="30dp"
        android:text="ToggleButton" />

    <ToggleButton
        android:id="@+id/toggleButton11"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/toggleButton10"
        android:layout_alignRight="@+id/toggleButton8"
        android:text="ToggleButton" />

    <ToggleButton
        android:id="@+id/toggleButton12"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/toggleButton11"
        android:layout_alignRight="@+id/toggleButton9"
        android:text="ToggleButton" />

    <DatePicker
        android:id="@+id/datePicker1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/toggleButton10"
        android:layout_centerVertical="true" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignRight="@+id/datePicker1"
        android:text="Set" />

    <TimePicker
        android:id="@+id/timePicker1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/button2"
        android:layout_centerHorizontal="true" />
        </RelativeLayout>

My onCreate() method is something like this

vf = (ViewFlipper)findViewById(R.id.viewFlipper1);
//get all other elements in variables
//show progress dialog
connectThread.start()

Now, after thread finishes it's job, I dismiss progress dialog. There is menu named Alarm on it's click i have written vf.showNext(). The view is also changing but new screen is just blank.

But if I write vf.showNext() in onCreate() method before calling thread, I can see both the views. But if I don't do vf.showNext() then I can see only my first view. :(

Does anyone know what is the problem? I want my first view and on alarm menu click I want second view.

share|improve this question

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.