您好,我正在嘗試設置背景圖像的LinearLayout
,首先我需要使其四捨五入,我使用shape
標記並調用setBackgroundResource
使其圓整但現在我應該怎麼設置任何可繪製也在同一上LinearLayout
如何在運行時設置線性佈局的背景+圓角形狀
layout_rounded.xml
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF"/>
<stroke android:width="3dip" android:color="#B1BCBE" />
<corners android:radius="10dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
運行時間,我這樣做
linearLayout.setBackgroundResource(R.drawable.layout_rounded);
這裏設置在LinearLayout
的背景,然後我打電話給setBackgroundDrawable
但調用此之後,其設置可繪製但同樣取消設置LinearLayout
的形狀。
我沒有在那個水庫繪製,這樣的背景下,我從URL獲取然後試圖設置
能否請你看看如何實現這一目標?
在此先感謝
您在'layout_rounded.xml'本身設置了背景.. – Lal
@Lal我沒有那個可繪製的'res',那個背景我從URL –
首先明確了一件事,我要設置什麼'Image'或'rounded_xml'? –