Android ScrollView Performance Jellybean 4.2 -
i running following layouts on android 4.2 when having buttons in single linearlayout runs fine:
<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>
but when wrap same linearlayout scrolview, button clicks delayed (button background state, onclick function, etc).
<scrollview android:layout_width="match_parent" android:layout_height="wrap_content"> ... </scrollview>
is known issue in android 4.2?
Comments
Post a Comment