我想调整一个gif动画的大小,以便我的一个按钮适合屏幕。我正在使用WebView进行gif动画。当我插入图像按钮时,它不会显示。请帮助。
<RelativeLayout xmlns:android="schemas.android.com/apk/res/android"; xmlns:tools="schemas.android.com/tools";
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Activity_B" >
<ImageButton android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/back" />
</RelativeLayout>
答案 0 :(得分:2)
您在哪里定义WebView?看看这是否适合你:
<RelativeLayout xmlns:android="schemas.android.com/apk/res/android"; xmlns:tools="schemas.android.com/tools";
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Activity_B" >
<ImageButton android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/back" />
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_below="@+id/imageButton1" />
</RelativeLayout>
修改1:
假设RelativeLayout
和ImageButton
的布局文件名为mainLayout.xml
。
执行以下操作:
View mainView = getLayoutInflater().inflate(R.layout.mainLayout, null);
RelativeLayout rlContainer = (RelativeLayout) mainView.findViewById(R.id.rlContainer);
GIFWebView view = new GIFWebView (this, "file:///android_asset/imageedit_ball.gif");
RelativeLayout.LayoutParams wvParams = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.MATCH_PARENT,
RelativeLayout.LayoutParams.MATCH_PARENT);
wvParams.addRule(RelativeLayout.BELOW, R.id.imageButton1);
rlContainer.addView(view, wvParams);
setContentView(mainView);
给你的RelativeLayout一个id:
android:id="@+id/rlContainer"
<RelativeLayout xmlns:android="schemas.android.com/apk/res/android"; xmlns:tools="schemas.android.com/tools";
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Activity_B"
android:id="@+id/rlContainer" >
<ImageButton android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/back" />
</RelativeLayout>
答案 1 :(得分:0)
请添加相对布局,然后将第一个按钮和第二个webview放在相对布局中。