I'm trying to apply a gradient bg color to a WebView... I'm use many sample code but not display gradient color... if anyone know the ans post me..

link|improve this question

what are you doing that isn't working? – Zack Apr 5 '11 at 12:45
feedback

4 Answers

up vote 2 down vote accepted

A WebView has a default background color of white, drawn in front of any drawables. You'll need to use the following code to make it transparent:

WebView webview = (WebView)findViewById(R.id.wv);        
        webview.setBackgroundColor(0);

Then apply a gradient background as follows:

Create a file called gradient-bg.xml in your /res/drawable-mdpi folder.

Add:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
       android:shape="rectangle">
    <gradient 
            android:startColor="#FFFFFF" 
            android:endColor="#000000"
            android:angle="90"
            />
</shape>

Then in your layout files you can add the drawable to any view or layout via the background property:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/gradient-bg"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
</LinearLayout>
link|improve this answer
Hi David Caunt, I'm Change WebView gradient backgound color but not changed..... – Jeeva Apr 5 '11 at 13:07
Oh...try web.setBackgroundResource(R.drawable.gradient); It may not work but I'll update your question anyway. – David Caunt Apr 5 '11 at 13:13
Hi I'm use setBackgroundResource this is change TextView bg as gradient color but not change webview bg as gradient – Jeeva Apr 5 '11 at 13:23
K David if you know the ans ple upload here...I'm also try this – Jeeva Apr 5 '11 at 13:30
2  
Forget the linear layout - you can do it all in code in onCreate or otherwise: WebView webview = (WebView)findViewById(R.id.wv); webview.setBackgroundColor(0); webview.setBackgroundResource(R.drawable.gradient); – David Caunt Apr 5 '11 at 13:38
show 5 more comments
feedback

put this in the drawable folder as a XML file, and then use it as a background for some Widget.

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <gradient android:startColor="#FFFFFF" android:endColor="#AAAAAA"
            android:angle="270"/>
</shape>
link|improve this answer
Hi Reflog, I am add this code in drawable...... and add one line java code web.setBackgroundColor(R.drawable.gradient); but not changed bg color – Jeeva Apr 5 '11 at 13:09
Don't set it as a color, set it as a background drawable – Reflog Apr 5 '11 at 13:22
Hi I'm use background drawable but display error.... – Jeeva Apr 5 '11 at 13:26
feedback

Try this.. Just add this XML file in ur drawable as gradient_box.xml

  <?xml version="1.0" encoding="utf-8"?>
 <shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle">
 <gradient
    android:startColor="#B8E7F3"
    android:endColor="#01CBFB"
    android:angle="45"/>
 <padding android:left="3dp"
    android:top="3dp"
    android:right="3dp"
    android:bottom="3dp" />
 <corners android:radius="6dp" />

  </shape>
link|improve this answer
Hi Hussain, I am add this code in drawable...... and add one line java code web.setBackgroundColor(R.drawable.gradient); but not changed bg color – Jeeva Apr 5 '11 at 13:04
@Jeeva: Im using this code.. Its working for me.. try to add it in XML and see android:background="@drawable/gradient_box" – Hussain Apr 5 '11 at 13:16
Hi hussain,This code I'm use but TextView bg as gradient color but not change webview bg as gradient – Jeeva Apr 5 '11 at 13:28
feedback

To make webview transperent use webview.setBackgroundColor(0)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.