2
私はlayout.xml
次ている:私はこのような親LinearLayout
の背景色を設定 AndroidのImageViewの - ImageViewのは着色しない方法
<LinearLayout
android:id="@+id/layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/image"
android:layout_width="100dp"
android:layout_height="50dp"
android:src="@drawable/logo"/>
...
</LinearLayout>
:しかし
LinearLayout layout = (LinearLayout) view.findViewById(R.id.layout);
layout.setBackgroundColor(Color.parseColor("#727272"));
layout.setAlpha(0.5f);
を、ImageView
(ID :画像)が着色される。その親レイアウトの背景色を設定している間にImageView
を色づけしない方法はありますか?
eventLogoLayoutとは何ですか? –
なぜeventLogoLayout.setAlpha(0.5f)を設定しますか?それはおそらくあなたのロゴに依存する色合いです。スクリーンショットをここに添付する必要があります。 – ikhsan
ImageView background = nullを設定します。それはあなたを助けるかもしれない – Konstantin