10

如何防止 anImageButton具有固定大小?选择器中使用的可绘制对象具有不同的大小,我希望ImageButton调整自身大小以匹配图像大小。

我试过adjustViewBounds没有成功。

<RelativeLayout 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:padding="8dp" >

    <ImageButton
        android:id="@+id/picture_imagebutton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:src="@drawable/tab_background_selector" />

</RelativeLayout>
4

6 回答 6

6

而不是使用ImageButton,使用ImageView因为ImageButton不能基于 调整自身的大小ImageSizeImageView是我可以针对您的问题提出的最佳替代方法。通过以下方式实现:

布局.xml:

   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:orientation="vertical"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent">

<ImageView
    android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/image_selection"/>

 </RelativeLayout>

image_selection.xml:

<selector xmlns:android="http://schemas.android.com/apk/res/android">    
   <item android:state_focused="true" 
       android:state_pressed="true" 
       android:drawable="@drawable/default_image"/> //default_image.png is displayed when the Activity loads.   
   <item android:state_focused="false" 
       android:state_pressed="true" 
       android:drawable="@drawable/default_image_hover" />  //default_image_hover.png is an image displaed during Onclick of ImageView  
   <item android:state_focused="true"
       android:drawable="@drawable/default_image_hover" />   
   <item android:state_focused="false" 
       android:drawable="@drawable/default_image"/>
 </selector>

SampleActivity.java:

  ImageView myImage= (ImageView)findViewById(R.id.image);
    myImage.setOnClickListener(this);
于 2013-02-27T06:30:42.163 回答
0

您可能已经知道在选择器中设置可绘制对象并不容易,而且我认为没有基于 XML 的解决方案来解决您的问题。试试这个。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <ImageButton 
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/default_image"
        android:contentDescription="@null"/>

</RelativeLayout>

然后你需要将此代码添加到 onCreate 或 onResume

    final ImageButton button = (ImageButton) findViewById(R.id.button);

    button.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if(event.getAction() == MotionEvent.ACTION_DOWN)
                button.setImageDrawable(getResources().getDrawable(getResources().getIdentifier("pressed_image", "drawable", getPackageName())));
            else if(event.getAction() == MotionEvent.ACTION_UP)
                button.setImageDrawable(getResources().getDrawable(getResources().getIdentifier("default_image", "drawable", getPackageName())));

            return false;
        }
    });
于 2013-02-21T09:45:13.930 回答
0

不要使用 ImageButton,只需使用 Image 并通过 onClick 方法提供它

于 2013-02-21T21:44:28.310 回答
0

正如其他人所提到的,您最好使用 an ImageView,因为它会调整其高度。设置属性setClickable以像按钮一样使用它。还将您的换成RelativeLayouta LinearLayout,这会将其高度包装到您的ImageButton

<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:padding="8dp" >

<ImageView
    android:id="@+id/picture_imagebutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:setClickable="true"
    android:src="@drawable/tab_background_selector" />

</LinearLayout>

或者,您可以使LinearLayout可点击并添加背景资源(未点击时透明,点击时着色)作为选择器。

于 2013-02-21T21:56:11.773 回答
0

尝试

android:background="@drawable/tab_background_selector" 

安装的

android:src="@drawable/tab_background_selector"

希望有帮助。

于 2013-02-27T06:16:34.730 回答
0

您可以使用样式并根据 ImageBUtton 的状态设置不同的样式。因为样式支持背景、大小和许多其他属性,可帮助您根据手头的问题完全控制样式。

于 2013-02-27T20:26:37.500 回答