close
通常在Android中,我們會在Layout(XML)中設定各元件的背景圖:
android:background="@drawable/dice_1"
|
不過有時候會因特定條件的不同而去修改背景圖片,下述紀錄了如何動態調整背景圖片。
我先在layout中設定dice_1.png為背景圖,然後 onCreate時再動態調整為 dice_2.png為背景圖,先抓圖片dice_1, dice_2到 res/drawable 資料夾中:
Layout設定:
接下來我們onCreate的原始碼如下:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import androidx.appcompat.app.AppCompatActivity; | |
import androidx.core.content.ContextCompat; | |
import android.os.Bundle; | |
import android.widget.ImageView; | |
public class MainActivity extends AppCompatActivity { | |
private ImageView imageView; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
imageView = findViewById(R.id.view); | |
imageView.setBackground(ContextCompat.getDrawable(this,R.drawable.dice_2)); | |
} | |
} |
其中line14就是用來動態設定背景圖片的方式:
imageView.setBackground(ContextCompat.getDrawable(this,R.drawable.dice_2));
|
ContextCompat.getDrawable()需要兩個參數,第一個是 context,第二個則是圖檔URI。
這樣就可以動態調整圖片了。
Reference:
https://stackoverflow.com/questions/12523005/how-set-background-drawable-programmatically-in-android
文章標籤
全站熱搜