您可以使用透明度屬性來設置Android中的背景圖片透明度。以下是一種常見的方法:
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/background_image" />
ImageView imageView = findViewById(R.id.imageView);
imageView.setAlpha(0.5f); // 設置透明度,取值范圍為0.0f到1.0f,0.0f表示完全透明,1.0f表示完全不透明
在這個例子中,我們將透明度設置為0.5f,意味著背景圖片會顯示為半透明。
請注意,如果您想要設置的是布局的背景透明度,而不僅僅是一個ImageView的背景透明度,您可以將透明度屬性應用于整個布局或容器。