需要来自xml属性自定义小部件的图像ID

时间:2012-08-10 20:01:12

标签: android android-drawable custom-widgets android-custom-attributes

我有一个自定义控件(现在非常简单)就像一个按钮。它需要显示未按下和按下的图像。它在活动中出现多次,并且具有不同的图像对,具体取决于它的使用位置。想想工具栏图标 - 与此类似。

以下是我的布局摘录:

<TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:MyApp="http://schemas.android.com/apk/res/com.example.mockup"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" >

  <TableRow>
    <com.example.mockup.ImageGestureButton
      android:id="@+id/parent_arrow"
      android:src="@drawable/parent_arrow"
      MyApp:srcPressed="@drawable/parent_arrow_pressed"
      ... />
     ...
  </TableRow>
</TableLayout>

attrs.xml:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
    <declare-styleable name="ImageGestureButton"> 
        <attr name="srcPressed" format="reference" /> 
    </declare-styleable> 
</resources> 

而且,在R.java中,人们发现:

public static final class drawable {
    public static final int parent_arrow=0x7f020003;
    public static final int parent_arrow_pressed=0x7f020004;
    ...
}

在窗口小部件实例化期间,我想确定活动xml中声明的id。我怎么做?我试过这个(我用工作代码更新了原帖;所以,以下工作。)

public class ImageGestureButton extends ImageView
   implements View.OnTouchListener
{
  private Drawable unpressedImage;
  private Drawable pressedImage;

  public ImageGestureButton (Context context, AttributeSet attrs)
  {
    super(context, attrs);
    setOnTouchListener (this);

    unpressedImage = getDrawable();

    TypedArray a = context.obtainStyledAttributes (attrs, R.styleable.ImageGestureButton, 0, 0);
    pressedImage = a.getDrawable (R.styleable.ImageGestureButton_srcPressed);
  }

  public boolean onTouch (View v, MotionEvent e)
  {
    if (e.getAction() == MotionEvent.ACTION_DOWN)
    {
      setImageDrawable (pressedImage);
    }
    else if (e.getAction() == MotionEvent.ACTION_UP)
    {
      setImageDrawable (unpressedImage);
    }

    return false;
  }
}

2 个答案:

答案 0 :(得分:7)

如果您想获得可绘制的使用TypedArray.getDrawable()。在您的示例中,您使用的是getString()。

declare-styleable使用

   <attr name="srcPressed" format="reference" /> 

答案 1 :(得分:2)

如果您想要Drawable的实际资源ID,而不是完全解析的Drawable,那么您可以这样做:

TypedArray a = context.obtainStyledAttributes( attrs, R.styleable.FooLayout );
TypedValue value = new TypedValue();
a.getValue( R.styleable.FooLayout_some_attr, value );
Log.d( "DEBUG", "This is the actual resource ID: " + value.resourceId );