gpt4 book ai didi

android - 设置安卓 :background/android:src programmatically

转载 作者:行者123 更新时间:2023-11-29 14:59:30 26 4
gpt4 key购买 nike

我需要像在 xml 中一样设置两个属性:

<ImageButton
android:id="@+id/btn_friendsMainMenu"
android:src="@drawable/general_btn_header_friendlist"
android:background="@drawable/ripple"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

如您所见,有一个背景和一个 src 属性。如何以编程方式设置两者?

我只知道一个:它是哪个?另一个是什么?

 btnBack.SetBackgroundResource(Resource.Drawable.thebook_backbutton);

最佳答案

使用setImageResource()android:src 设置为您的 ImageButton

setImageResource() Sets a drawable as the content of this ImageView.

示例代码

btnBack.setImageResource(R.drawable.ic_camera);

使用 setBackgroundResource()android:background 设置为您的 ImageButton

示例代码

btnBack.setBackgroundResource(R.color.colorAccent);

关于android - 设置安卓 :background/android:src programmatically,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50907384/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com