zoukankan      html  css  js  c++  java
  • xml 设置 imageview 背景(按下,禁用等)

    引用:http://yueguc.iteye.com/blog/620417

    做应用时,可能会需要动态改变控件的背景图片,如果仅仅是简单的点击,选中之类的事件,如果靠程序中写监听的代码就显得太麻烦了,在这种情况下,你可以使用selector动态改变控件背景拉:) 

    1。在res/drawable目录下建一个mybutton.xml文件,根据需要,不同的状态下建立不同的item,并对应相应的图片 

    <selector xmlns:android="http://schemas.android.com/apk/res/android"> 

        <item android:state_window_focused="false" 
            android:drawable="@color/transparent" /> 

        <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. 注意这句话--> 


        <item android:state_focused="true" android:state_enabled="false" 
            android:state_pressed="true" 
            android:drawable="@drawable/selector_background_disabled" /> 
        <item android:state_focused="true" android:state_enabled="false" 
            android:drawable="@drawable/lselector_background_disabled" /> 

        <item android:state_focused="true" android:state_pressed="true" 
            android:drawable="@drawable/selector_background_transition" /> 
        <item android:state_focused="false" android:state_pressed="true" 
            android:drawable="@drawable/selector_background_transition" /> 

        <item android:state_focused="true" 
            android:drawable="@drawable/selector_background_focus" /> 

    </selector> 

    2。在构造layout是引用这个xml 

    <ImageButton 
    android:id="@+id/ImageButton01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/mybutton"> 
    </ImageButton> 

  • 相关阅读:
    zoj 1671 Walking Ant【简单bfs】
    hdoj 2717 Catch That Cow【bfs】
    hdoj 1010 Tempter of the Bone【dfs查找能否在规定步数时从起点到达终点】【奇偶剪枝】
    poj 1321 棋盘问题【dfs】
    [LC] 124. Binary Tree Maximum Path Sum
    [LC] 113. Path Sum II
    [LC] 112. Path Sum
    [LC] 98. Validate Binary Search Tree
    [LC] 39. Combination Sum
    [LC] 159. Longest Substring with At Most Two Distinct Characters
  • 原文地址:https://www.cnblogs.com/sode/p/2128551.html
Copyright © 2011-2022 走看看