0

这是我的 xml 代码(我关注了这篇文章,但它不起作用):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<WebView
    android:id="@+id/webChapter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true"/>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal" 
    android:layout_below="@+id/webChapter"
    android:layout_alignParentBottom="true">

    <Button
        android:id="@+id/btnMenu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Back To Menu" />

    <Button
        android:id="@+id/btnNavi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Example" />

    <Button
        android:id="@+id/btnQuestion"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Quiz" />
</LinearLayout>

这是图形的:

在此处输入图像描述

当我的 webview 变得太高时,我的按钮不会显示。我该怎么办?感谢:D

4

4 回答 4

2

尝试以下操作:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<WebView
    android:id="@+id/webChapter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true"
    android:layout_above="@+id/linearlayout"/>

<LinearLayout
    android:id="@+id/linearlayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal" 
    android:layout_alignParentBottom="true">

    <Button
        android:id="@+id/btnMenu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Back To Menu" />

    <Button
        android:id="@+id/btnNavi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Example" />

    <Button
        android:id="@+id/btnQuestion"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Quiz" />
</LinearLayout>

希望对你有帮助

于 2013-01-03T14:05:15.920 回答
1

试试下面的布局,希望它对你有用。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="10" >

    <WebView
        android:id="@+id/webChapter"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="9" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:gravity="center_horizontal" >

        <Button
            android:id="@+id/btnMenu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Back To Menu" />

        <Button
            android:id="@+id/btnNavi"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Example" />

        <Button
            android:id="@+id/btnQuestion"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Quiz" />
    </LinearLayout>
</LinearLayout>

上面的代码将在 webview 下方有按钮。如果您可以使用 webview 上方的按钮,那么也不需要使用权重。您可以将 webview 放在按钮布局下方。

于 2013-01-03T14:05:05.640 回答
1

嗨试试这个

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<WebView
    android:id="@+id/webChapter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true"
    android:layout_alignBottom="@+id/btnLayout"/>

<LinearLayout
    android:id="@+id/btnLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal" 
    android:layout_below="@+id/webChapter">

    <Button
        android:id="@+id/btnMenu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Back To Menu" />

    <Button
        android:id="@+id/btnNavi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Example" />

    <Button
        android:id="@+id/btnQuestion"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Quiz" />
</LinearLayout>
于 2013-01-03T14:06:03.587 回答
1

您可以为您的 webview 固定一个高度,或者为您的 LinearLayout 定义一个 id 并android:layout_above在您的 webView 上设置属性,以保证您的 webview 将位于按钮上方而不是浮动在它们之上。

尝试这样的事情:

<WebView
    android:id="@+id/webChapter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/lowerBar"
    android:layout_alignParentTop="true"/>

<LinearLayout
    android:id="@+id/lowerBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal" 
    android:layout_alignParentBottom="true">
于 2013-01-03T14:06:18.677 回答