2014-04-19 82 views
0

不切換我的Android應用程序,我試圖讓兩個圖像之間的簡單切換按鈕切換,實際上是一個明星標記爲收藏。按鈕的狀態正在改變,但圖像不能在ON和OFF狀態下切換。持續顯示OFF狀態的圖像。形象的Android定製切換按鈕

我曾嘗試以下教程: http://www.coderzheaven.com/2012/05/20/create-custom-toggle-button-android/ http://www.technotalkative.com/android-custom-toggle-button-example/

** ** togbtn_fav_custom.xml

<item android:drawable="@drawable/ic_action_important" android:state_checked="true" android:state_pressed="true"/> 
<item android:drawable="@drawable/ic_action_important" android:state_checked="true" android:state_focused="false"/> 
<item android:drawable="@drawable/ic_action_not_important" android:state_checked="false" android:state_pressed="true"/> 
<item android:drawable="@drawable/ic_action_not_important" android:state_checked="false" android:state_focused="false"/> 

layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 

    > 
    <android.support.v4.view.ViewPager 
     android:id="@+id/pager" 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" /> 

    <LinearLayout 
     android:id="@+id/ll_back_single_dua_footer" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 

     android:gravity="center_vertical" > 

     <Button 
      android:id="@+id/btn_play_pause_dua" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_margin="5dp" 
      android:background="@drawable/play_btn_custom" /> 


     <TextView 
      android:id="@+id/tv_back_single_dua_footer_counter" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:gravity="center_horizontal" 
      android:singleLine="true" 
      android:text="@string/sample_counter" 

      android:textSize="23sp" /> 

     <ToggleButton 
      android:id="@+id/tog_btn_favorite_dua" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
     android:background="@drawable/togbtn_fav_custom" 
     android:textOff="" 
     android:textOn="" 
     /> 
    </LinearLayout> 

    </LinearLayout> 

任何人都可以請指導我我錯過了什麼?

+0

你的xml文件名是selector.xml還是togbtn_fav_custom.xml? – Riser

+0

togbtn_fav_custom.xml – user2011302

+0

正確檢查您的文件。 – Riser

回答

0

儘量簡化你這樣的selector.xml:

<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item android:drawable="@drawable/ic_action_not_important" android:state_checked="false"/> 
    <item android:drawable="@drawable/ic_action_important" android:state_checked="true"/> 
</selector> 

而且跟腱說,查線

android:background="@drawable/togbtn_fav_custom" 

可能是你需要設置selector.xml作爲背景?

+0

我在另一個活動中嘗試了相同的代碼,它工作正常。我在Fragment中使用上述代碼時發生問題。你能解釋一下,爲什麼? – user2011302