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



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

以下是我的布局摘录:

<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>

收件人.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;
  }
}

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

在您的declare-styleable使用

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

如果你想要可绘制对象的实际资源 ID,而不是完全解析的可绘制对象本身,你可以这样做:

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 );

相关内容

最新更新