我一直在搜索 Google 和 stackoverflow 一段时间,但没有找到任何回答我的问题的东西。
我想知道将 a LinearLayout
(没有特定的像素高度)放在 a 的底部WebView
。稍后将LinearLayout
填充一个片段,其中包含对WebView
.
问题的问题WebView
是几乎总是比屏幕大,因此用户必须滚动才能阅读全文。在滚动的底部,我希望CommentsFragment
插入(通过LinearLayout
,它需要一些参数,因此不能直接从 XML 加载)。
我已经尝试了一堆解决方案,但所有这些解决方案都始终LinearLayout
坚持在布局的底部,而不是在WebView
.
我当前的代码如下,当然不起作用:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/article_webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true" />
<LinearLayout
android:id="@+id/comments_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
感谢您的帮助!