我的布局有一个水平容器,其中有两个垂直容器。 第一个垂直容器有一个Web视图,后跟textview。没有创建textview并且webview填满了高度。我试图通过设置Web控件的高度 android:layout_height =“60px”,但似乎无法正常工作。
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" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<LinearLayout
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical">
<WebView
android:id="@+id/webAuthor"
android:layout_width="60px"
android:layout_height="60px"
android:layout_weight="1.0" />
<TextView
android:id="@+id/textChats"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="hello" />
</LinearLayout>
<LinearLayout
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/eventsbakground"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/addbanner"
android:id="@+id/butAdd"
android:layout_gravity="center"
android:layout_marginTop="12px" />
<ListView
android:id="@+id/mylist"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:2)
尝试从网络视图中删除android:layout_weight="1.0"
,因为它可能会导致webview捕获整个布局并隐藏文本视图。
答案 1 :(得分:1)
如上所述@Vikram Singh,删除android:layout_weight="1.0"
,当您将视图的layout_weight
设置为“1.0”时,这意味着此视图必须填充漏洞父级。
使用layout_weight
,您可以指定多个视图之间的大小比率。例如。你有一个MapView和一个表,它应该向地图显示一些额外的信息。地图应使用屏幕的3/4,表格应使用屏幕的1/4。然后,您将地图的layout_weight设置为3,将表格的layout_weight设置为1.但是当您将1设置为仅一个时,它将填充父
答案 2 :(得分:0)
我相信重量会超越WebView内部的高度,我会尝试删除它。但正如沃伦所说,你在帖子上的格式非常难以阅读,我非常感谢他编辑了它。