以下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);
示例:
TextView
应该是底部的黑色空间,但当然更高。非常感谢任何帮助,谢谢。
答案 0 :(得分:4)
如果您尝试在WebView
周围调整TextView
(我假设这是您想要的,因为您拥有android:weight
属性),请确保您将高度设置为“0dp
”而不是“fill_parent
”。否则,WebView
将填充父级,您的TextView
将不会显示。
此外,由于TextView
的高度设置为“wrap_content
”,如果您想看到它,您实际上需要内容。设置文本后查看是否显示。
答案 1 :(得分:0)
我认为你必须在TextView“text”上设置一些文字
类似于此text.setText("This is text ")