0
我嘗試設置圖像背景。我正在創建一個背景顏色爲紅色的視圖。如何在android中將視圖設置爲圖像背景?
以編程方式顯示所有視圖並設置圖像背景。
這是我的代碼
final View trans_View = new ImageView(MyClass.this);
ImageView img = (ImageView)findViewById(R.id.img);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
100, 100);
params.setMargins(10, 2, 10, 2);
trans_View.setBackgroundColor(Color.RED);
trans_View.setLayoutParams(params);
img.setBackground查看????
例 - 實際圖像:
當我選擇圖片然後顯示下面輸出。
我不知道如何設置視圖圖像背景。
請幫我...
thankx我使用相對佈局,而不是FraneLayout。 – Hemant