在全屏中使用WebView和RelativeLayout时出现奇怪的行为

编辑:这是显示问题的视频:www.youtube.com/watch?v=5ZZsuMH5T9k我真的被困在这里:/

-

我有一个活动,它由一个webview和一个按钮组成。 我使用onCreate代码将活动的窗口设置为全屏:

@Override
public void onCreate(Bundle savedInstanceState) {
  InstaFetchApplication.applyCurrentTheme(this);

  super.onCreate(savedInstanceState);

  getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
  requestWindowFeature(Window.FEATURE_PROGRESS);

  if (UserPreferences.getIsFullScreenReadingEnabled(this)) {
    requestWindowFeature(Window.FEATURE_NO_TITLE);

    // this just do this: window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    ActivityUtils.toggleFullScreen(this, true);
  }

  setContentView(R.layout.view_article);

  // ...
}

问题在于,大多数情况下,webview似乎将按钮从屏幕上“推出”。 以下是截图:

(更大的版本)

我期望看到的(有时候我会这样做)在这里:

(更大的版本)

这里是我使用的布局(请注意,在我的应用中,顶部布局必须是RelativeLayout):

<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/layout_test"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
>
  <Button
    android:id="@+id/button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:text="Click me!"
  />
  <WebView
    android:id="@+id/web_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@id/button"
  />
</RelativeLayout>

我还注意到,如果您使用系统设置关闭了设备上的所有动画,问题就消失了(尽管当整个视图具有顶部边距,然后跳回到正确位置时会出现此故障)。

有没有人遇到类似的问题,并知道如何解决它?


最后我找到了答案。 添加WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS标志到窗口解决了我的问题。

看到这篇文章:flag_fullscreen + windowNoTitle ==按钮焦点错误。


我刚刚在Hello WebView教程中添加了一个按钮,看起来一切似乎都正确。 然后我将LinearLayout main.xml转换为了RelativeLayout ,并且所有东西看上去都很正常。 我认为你让事情太复杂了。 :-)尝试从onCreate()删除大部分初始化代码,并在XML中指定它。

这是我的项目。

AndroidManifest.xml中:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.hellowebview"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15" />
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".HelloWebViewActivity"
            android:label="@string/app_name" 
            android:theme="@android:style/Theme.NoTitleBar"
            >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

HelloWebViewActivity.java:

package com.example.android.hellowebview;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class HelloWebViewActivity extends Activity {

    WebView mWebView;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_rl);

        mWebView = (WebView) findViewById(R.id.webview);
        mWebView.setWebViewClient(new HelloWebViewClient());
        mWebView.getSettings().setJavaScriptEnabled(true);
        mWebView.loadUrl("http://www.google.com");
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if ((keyCode == KeyEvent.KEYCODE_BACK) && mWebView.canGoBack()) {
            mWebView.goBack();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }

    private class HelloWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            view.loadUrl(url);
            return true;
        }
    }
}

main_ll.xml(LinearLayout):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <WebView
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
    />
    <Button
        android:id="@+id/mainbtn"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:text="@string/btn_label"
    />
</LinearLayout>

main_rl.xml(RelativeLayout):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <WebView
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/mainbtn"
    />
    <Button
        android:id="@+id/mainbtn"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="@string/btn_label"
    />
</RelativeLayout>

strings.xml中:

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

    <string name="hello">Hello World, HelloWebViewActivity!</string>
    <string name="app_name">HelloWebView</string>
    <string name="btn_label">Push Me</string>

</resources>

尝试将网页视图对齐到父窗口,并将按钮对齐父窗口底部并放在网页视图下方。 我发现,如果没有真正的原因,如果元素不是以线性顺序排列在一起,而是固定在屏幕的顶部或底部,那么这些元素的排列不正确。

我推测你并不是重写onMeasure()方法,而是改变按钮的测量高度。 在开发我的应用程序时,我通过在布局阶段错误计算元素的高度而创建了大量(太多)的错误,并且花费了几个小时来苦苦寻找布局定义代码,以发现它很好,但高度计算是将无效数据提供给布局的渲染阶段。

链接地址: http://www.djcxy.com/p/56845.html

上一篇: Strange behaviour when using WebView and RelativeLayout in fullscreen

下一篇: Stop CMD from always opening with administrator privileges