我试图在网页视图中显示gif文件,并在网页视图周围创建一张九张补丁照片(作为框架)。但总是网页视图和它的框架获得填充父宽度。但我需要框架完全显示在gif文件周围没有任何额外的空间,这是我的代码:
<FrameLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/frame_tir3"
xmlns:android="http://schemas.android.com/apk/res/android">
<WebView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/web1"/>
</FrameLayout>
我尝试了非常不同的代码,但任何工作都没有。