-2

的WebView我有如下的是Android的WebView:安卓:顯示在一個圓圈形狀

<WebView 
     android:layout_width="80dp" 
     android:layout_height="80dp" 
     android:id="@+id/userImage" 
     android:background="@drawable/circle"/> 

我必須表明該網頁視圖中的圓形。我是android新手。 Google搜索並嘗試了許多代碼。但它不起作用。任何人都可以給我可繪製的代碼,以圈出的形狀顯示webview,就像在whattsapp用戶圖像中一樣。

+0

檢查這是很有幫助的一個:HTTP://計算器.com/questions/11675436/android-give-a-webview-rounded-corners – Androider

回答

0

創建新的xml circle.xml並粘貼此代碼

<?xml version="1.0" encoding="utf-8"?> 
<!-- Created by FirozShaikh on 02/12/2015. --> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
     android:shape="oval"> 
    <size 
     android:height="100dp" 
     android:width="100dp" /> 
    <solid android:color="@color/blue"/> 
</shape> 
+0

否工作.... –

0

這是網頁視圖佈局

<FrameLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:paddingTop="10dip" 
    android:paddingBottom="10dip" 
    android:paddingLeft="1dip" 
    android:paddingRight="1dip" 
    android:background="@drawable/white_rounded_area" 
    > 
<WebView 
     android:id="@+id/web_view" 
     android:layout_width="300dip" 
     android:layout_height="400dip" 
     android:layout_gravity="center" 
     /> 
</FrameLayout> 

rounded.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
     android:shape="rectangle" android:padding="10dp"> 
    <solid android:color="#000"/> 
    <corners 
     android:bottomRightRadius="15dp" 
     android:bottomLeftRadius="15dp" 
     android:topLeftRadius="15dp" 
     android:topRightRadius="15dp"/> 
</shape> 

此代碼爲我工作檢查此link