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.

Here I have this screen when clicking the menu button located in left side of actionbar, it will slide the side menu out.

However, during the menu transition, the center of actionbar suddenly blink white color. But this situation is not happen when I drag my side menu instead of clicking the button at actionbar.

I don't know why this happen in emulator 4.1.2 because in emulator 2.2, it works correctly.

Normal Screen

Normal Screen

SlideScreen when click menu button

SlideScreen

BlinkScreen

Blink Screen

Right now, I notice that when I change android:background from selector to normal color. This white blink and also pressed button color will disappear and when change back to selector it comes again.

Can someone help me please?

Here some part of xml code

home_actionbar.xml

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/TableLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/slidemenu_bg"
    android:stretchColumns="1" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <ImageButton
            android:id="@+id/actionbar_slidemenu_btn"
            style="@style/actionbar_btn"
            android:layout_width="45dp"
            android:layout_height="45dp"
            android:src="@drawable/actionbar_slidemenu_pict" />

        <TextView
            android:id="@+id/actionbar_title_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="TextView"
            android:textColor="@color/actionbar_title_text"
            android:textSize="20sp"
            android:textStyle="bold" />

        <ImageButton
            android:id="@+id/actionbar_more_btn"
            style="@style/actionbar_btn"
            android:layout_width="45dp"
            android:layout_height="45dp"
            android:src="@drawable/actionbar_option_pict" />

    </TableRow>

</TableLayout>

actionbar button theme

<style name="actionbar_btn">
        <item name="android:background">@drawable/actionbar_button_selector</item>
</style>

actionbar button selector

<selector xmlns:android="http://schemas.android.com/apk/res/android">
     <item android:state_pressed="true"
           android:drawable="@color/actionbar_btn_press" />
     <item android:state_focused="true"
           android:drawable="@color/actionbar_btn_press"  />
     <item android:drawable="@color/actionbar_bg"  />
 </selector>

in Activity

actionBar = LayoutInflater.from(this).inflate(R.layout.home_actionbar,
                null);
titleCurrentPage = (TextView) actionBar
        .findViewById(R.id.actionbar_title_text);
titleCurrentPage.setText("Home");
toggleSlideMenu = (ImageButton) actionBar
        .findViewById(R.id.actionbar_slidemenu_btn);
toggleSlideMenu.setOnClickListener(this);
toggleOptionsMenu = (ImageButton) actionBar
        .findViewById(R.id.actionbar_more_btn);
toggleOptionsMenu.setOnClickListener(this);
getSupportActionBar().setDisplayShowHomeEnabled(false);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setCustomView(actionBar);
getSupportActionBar().setDisplayShowCustomEnabled(true);

The sliding menu I just use a simple one from this SlidingMenu library together with ActionBarSherlock

Thank in advance.

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.