我正在我的android项目中进行某种聊天。在我的布局中,一切似乎都运行良好,但屏幕底部的按钮和edittext不会显示或显示。如何使其可见。这是我的layout.xml:
<outer>{~n}
{#products}
{@eq key=has_variants value=true}
The ID is {master.id}{~n}
{:else}
{#variants}
The ID is {id}{~n}
{/variants}
{/eq}
{/products}
</outer>
答案 0 :(得分:0)
这是因为您在android:layout_height="fill_parent"
上设置了ScrollView
,导致它占用了所有可用空间。将其设置为0dp
并添加android:layout_weight="1"
,为下LinearLayout
腾出空间。
答案 1 :(得分:0)
ScrollView正在全力以赴。 尝试:
<ScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical" >