12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <ProgressBar
- android:id="@+id/web_progress"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="fill_parent"
- android:layout_height="@dimen/fanwei_2_dp"
- android:indeterminateOnly="false"
- android:max="100"
- android:progressDrawable="@drawable/progress_bar_states" >
- </ProgressBar>
- <com.fanwei.sdk.view.WebViewEx
- android:id="@+id/fanwei_yee_wap"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="left|center_vertical"
- android:paddingLeft="@dimen/fanwei_10_dp"
- android:textSize="@dimen/text_22_size" />
- </LinearLayout>
|