白屏部分覆盖了我在webview android中的内容

时间:2014-04-27 15:06:15

标签: android webview

我正在为android开发一个混合应用程序。 在我的代码中,我只有webview。

当我尝试运行应用程序时,我得到一个白色矩形,几乎涵盖了网址的所有内容。 This is how it looks

几乎尝试了一切,但没有成功。

这是我的" MainActivity.java"代码:

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment())
                .commit();
    }
  //  String url = "http://shop.chefnoded.co.il";
    String url = "http://myurl";
    WebView view = (WebView)this.findViewById((R.id.webView1));
    view.setWebViewClient(new WebViewClient());
    view.getSettings().setJavaScriptEnabled(true);
    view.setBackgroundColor(0x00000000);
    view.loadUrl(url);


}


@Override
public boolean onCreateOptionsMenu(Menu menu) {

    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}

/**
 * A placeholder fragment containing a simple view.
 */
public static class PlaceholderFragment extends Fragment {

    public PlaceholderFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_main, container, false);
        return rootView;
    }
}

}

这是activity_main.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.mywv.MainActivity"
tools:ignore="MergeRootFrame"

>

<WebView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/webView1"
    android:layout_gravity="center" />

如何摆脱这个白色矩形? 谢谢

3 个答案:

答案 0 :(得分:0)

嗯......我用三星Galaxy S4(API级别18)测试了代码并且它运行得很好,我怀疑它与设备或API级别有关。你有没有尝试添加

android:hardwareAccelerated="false"

提到清单文件中的活动here

另外,您正在测试什么设备+ API级别?

答案 1 :(得分:0)

    @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.fragment_main, container, false);
    return rootView;
}

}

这是由go dev自动生成的部分。工作室。 删除后,白屏消失了。

答案 2 :(得分:-1)

如何摆脱S4上的白色矩形?

我不确定如何根据代码和域名进行更改。

自从我做Kit-Kat更新以来,这个盒子很刺激。救命啊!