我有一个活动的relativelayout或linearlayout,它占据了屏幕的50%。我想让其他50%,用户能够与下面的“事物”互动。例如,活动布局显示在浏览器的顶部。我希望用户能够继续滚动浏览器。
这可能吗?我试过这些但没有用。
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
答案 0 :(得分:0)
您可以在顶部布局旁边使用GirdLayout,然后在下方放置另一个滚动视图。 例如:
<GridLayout...> // define two rows, 50% each
<RelativeLayout> // put this on the first row
...
</RelativeLayout>
<ScrollView>// put this on the second row
...
</ScrollView>
</GridLayout>