我有一个活动的相对布局或线性布局,占屏幕的 50%。我想让另外 50% 的用户能够与下面的“事物”进行交互。例如,活动布局出现在浏览器的顶部。我希望用户能够继续滚动下面的浏览器。
这可能吗?我尝试了这些但没有工作。
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
我有一个活动的相对布局或线性布局,占屏幕的 50%。我想让另外 50% 的用户能够与下面的“事物”进行交互。例如,活动布局出现在浏览器的顶部。我希望用户能够继续滚动下面的浏览器。
这可能吗?我尝试了这些但没有工作。
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
您可以在顶部布局旁边使用GirdLayout,并在下方放置另一个滚动视图。例如:
<GridLayout...> // define two rows, 50% each
<RelativeLayout> // put this on the first row
...
</RelativeLayout>
<ScrollView>// put this on the second row
...
</ScrollView>
</GridLayout>