0

ボタンの 1 つが画面に収まるように gif アニメーションのサイズを変更したいと考えています。GIFアニメーションに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" /> 

</RelativeLayout>
4

2 に答える 2

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としましょう。以下をせよ:ImageButtonmainLayout.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>
于 2013-08-17T06:44:28.200 に答える