0

我有一个活动的相对布局或线性布局,占屏幕的 50%。我想让另外 50% 的用户能够与下面的“事物”进行交互。例如,活动布局出现在浏览器的顶部。我希望用户能够继续滚动下面的浏览器。

这可能吗?我尝试了这些但没有工作。

android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
4

1 回答 1

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>
于 2013-11-05T18:39:47.270 回答