gpt4 book ai didi

android - LinearLayout 和 Webview 在 ScrollVIew 中的大小不一样

转载 作者:行者123 更新时间:2023-11-30 04:02:31 28 4
gpt4 key购买 nike

我有以下 View 树:

  • 相对布局
    • ScrollView
      • 相对布局
        • WebView
        • LinearLayout(webview 右侧)

我需要 LinearLayout 在加载网页后具有与 WebView 相同的高度。我该怎么做?

我正在使用的布局 xml

<ScrollView android:id="@+id/scroll_view" android:layout_width="fill_parent" android:layout_height="fill_parent"
android:fadingEdge="none" >

<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">

<RelativeLayout android:id="@+id/view_touchbutton" android:layout_width="50dp" android:layout_alignParentRight="true"
android:layout_height="fill_parent" android:background="@drawable/next_page_white" android:layout_alignParentTop="true"
android:gravity="center_horizontal">
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="300dp"
android:src="@drawable/sipka_dalsi"
android:contentDescription="sipka"/>
</RelativeLayout>

<ImageView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/imageview_content" android:contentDescription="image"
android:src="@drawable/bezobrazku_clanek" android:scaleType="fitXY"/>

<LinearLayout android:id="@+id/layout_info_box" android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_alignBottom="@id/imageview_content" android:background="#aa000000"
android:orientation="vertical" android:gravity="left|center_vertical" android:visibility="gone">

</LinearLayout>

<ImageButton android:id="@+id/button_info_box_switch" android:layout_alignLeft="@id/imageview_content" android:layout_alignBottom="@id/imageview_content"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="20dp" android:src="@drawable/info" android:background="@null"/>


<View android:id="@+id/view_red_divider" android:layout_width="fill_parent" android:layout_height="4dp" android:background="#990505" android:layout_below="@id/imageview_content"/>

<WebView android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_toLeftOf="@id/view_touchbutton"
android:id="@+id/webview" android:layout_below="@id/view_red_divider" android:fitsSystemWindows="true"/>

</RelativeLayout>
</ScrollView>

<LinearLayout android:id="@+id/layout_splash_screen" android:layout_width="fill_parent" android:layout_height="fill_parent"
android:gravity="center_horizontal|center_vertical" android:background="#ecece7" android:visibility="gone" >

<ProgressBar style="?android:attr/progressBarStyleInverse" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:indeterminate="true" android:paddingRight="8dp" />
</LinearLayout>

最佳答案

RelativeLayout 更改为 LinearLayout 并将 WebViewLinearLayout 的权重设置为 android:layout_weight="1"

关于android - LinearLayout 和 Webview 在 ScrollVIew 中的大小不一样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12282858/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com