<LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="51dp" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:id="@+id/linearLayout"> <TextView android:layout_width="173sp" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:text="Basic Salary : " android:id="@+id/basicSalaryTV" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/basicSalaryET" android:layout_weight="0.34" android:hint="put amount" /> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="51dp" android:layout_centerHorizontal="true" android:layout_below="@+id/linearLayout" android:id="@+id/linearLayout2"> <TextView android:layout_width="173sp" android:layout_height="51dp" android:textAppearance="?android:attr/textAppearanceLarge" android:text="Medical:" android:id="@+id/medicalTV" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/medicalET" android:layout_weight="1" android:hint="put percentage" /> </LinearLayout> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="51dp" android:layout_below="@+id/linearLayout2" android:layout_centerHorizontal="true" android:id="@+id/linearLayout3"> <TextView android:layout_width="173sp" android:layout_height="51dp" android:textAppearance="?android:attr/textAppearanceLarge" android:text="House Rent :" android:id="@+id/houseRentTV" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/houseRentET" android:layout_weight="1" android:hint="put percentage" /> </LinearLayout> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="New Button" android:id="@+id/button" android:layout_below="@+id/linearLayout3" android:layout_centerHorizontal="true" /> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="51dp" android:layout_below="@+id/button" android:layout_centerHorizontal="true"> <TextView android:layout_width="173sp" android:layout_height="51dp" android:textAppearance="?android:attr/textAppearanceLarge" android:text="Total Salary :" android:id="@+id/totalsalaryTV" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/totalSalaryET" android:layout_weight="1" android:hint="show amount" /> </LinearLayout>
The first web page doesn't show until all the tasks are done?? WaitAny should return when at least one task is done though I thought.
I am trying to get the system warmed up, but have the first page appear while the system runs in the background caching.
No comments:
Post a Comment