为了账号安全,请及时绑定邮箱和手机立即绑定

setBackgroundResource

setBackgroundResource只能设置ImageView的android:background属性吗?那如果要设置android:src属性应该怎么设置呢?

正在回答

1 回答

// 设置ImageView标签android:src属性,使用setImageResource(@DrawableRes int resId)

// 下面是background

/**
 * Set the background to a given resource. The resource should refer to
 * a Drawable object or 0 to remove the background.
 * @param resid The identifier of the resource.
 *
 * @attr ref android.R.styleable#View_background
 */
@RemotableViewMethod
public void setBackgroundResource(@DrawableRes int resid)


// 下面是src

/**
 * Sets a drawable as the content of this ImageView.
 *
 * <p class="note">This does Bitmap reading and decoding on the UI
 * thread, which can cause a latency hiccup.  If that's a concern,
 * consider using {@link #setImageDrawable(android.graphics.drawable.Drawable)} or
 * {@link #setImageBitmap(android.graphics.Bitmap)} and
 * {@link android.graphics.BitmapFactory} instead.</p>
 *
 * @param resId the resource identifier of the drawable
 *
 * @attr ref android.R.styleable#ImageView_src
 */
@android.view.RemotableViewMethod(asyncImpl="setImageResourceAsync")
public void setImageResource(@DrawableRes int resId)

2 回复 有任何疑惑可以回复我~
#1

大的小彩笔 提问者

谢谢啦
2016-08-28 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312585    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

setBackgroundResource

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信