我在Android 4.2上运行以下布局 将按钮放在一个LinearLayout中时,一切运行正常:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
>
<Button
style="@style/auth_primary_button_split"
android:id="@+id/startup_login"
android:text="@string/login_label"
/>
<Button
style="@style/auth_primary_button_split"
android:id="@+id/startup_signup"
android:text="@string/signup_label"
/>
</LinearLayout>
但是当将相同的LinearLayout包装到ScrolView中时,按钮点击会被延迟(按钮背景状态,onClick功能等)。
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
...
</ScrollView>
这是Android 4.2中的已知问题吗?