以编程方式在其下方显示带有TextView的WebView

时间:2012-07-01 10:02:15

标签: android android-layout webview textview

以下XML实现似乎工作正常:

<?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/chatView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" />

    <EditText
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </EditText>
</LinearLayout>

但是,以下Java实现没有(WebView之后底部有一个很小的空格,但TextView不可见。)

Context mContext = getActivity();

LinearLayout view = new LinearLayout(mContext);
view.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
view.setOrientation(LinearLayout.VERTICAL);

WebView web (new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT, 1f));
web.loadUrl("http://www.google.com");

TextView text = new TextView(mContext);
text.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));

view.addView(web);
view.addView(text);

示例:

<code>TextView</code> should be where the back space at the bottom is, but taller of course.

TextView应该是底部的黑色空间,但当然更高。非常感谢任何帮助,谢谢。

2 个答案:

答案 0 :(得分:4)

如果您尝试在WebView周围调整TextView(我假设这是您想要的,因为您拥有android:weight属性),请确保您将高度设置为“0dp”而不是“fill_parent”。否则,WebView将填充父级,您的TextView将不会显示。

此外,由于TextView的高度设置为“wrap_content”,如果您想看到它,您实际上需要内容。设置文本后查看是否显示。

答案 1 :(得分:0)

我认为你必须在TextView“text”上设置一些文字

类似于此text.setText("This is text ")