This Is A Solution For "flickering Issue On Scrolling" On Android Device
You will see a flickering issue on edit text boxes when you try to scroll. This is an issue often seen and is due to bad coding while creating View using XML. See the following sam
Solution 1:
In the sample above in the question, background has been set to color WHITE for email in both emailEditText and emailArea. This is the reason for flickering. To avoid this flickering just set background to white at one place only. See the following code :-
<LinearLayoutandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_below="@+id/stepText"android:background="@drawable/textbox_group_border"android:orientation="vertical" ><RelativeLayoutandroid:id="@+id/emailArea"android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_marginTop="2dip"
**android:background="@color/color_white"**
><EditTextandroid:id="@+id/emailEditText"android:layout_width="fill_parent"android:layout_height="45dip"
**android:background="@null"**
android:hint="@string/email_address"android:inputType="textEmailAddress"android:paddingLeft="5dip"android:paddingRight="55dp"android:tag="Email Address"android:textColor="#FF777777"android:textColorHint="@color/hint_color"android:textSize="15dip" /><TextViewandroid:id="@+id/whyLabel"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentRight="true"android:layout_centerVertical="true"android:paddingRight="10dip"android:text="@string/why_statement"android:textColor="#2388A5"android:textSize="14dip" /></RelativeLayout><!--Other Layouts--></LinearLayout>
Post a Comment for "This Is A Solution For "flickering Issue On Scrolling" On Android Device"