react-native-cosser
Version:
环信客服功能
39 lines (34 loc) • 1.36 kB
text/xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/loading_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:visibility="gone"
>
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_height="wrap_content"
android:max="100"
android:layout_centerHorizontal="true" />
<TextView
android:id="@+id/textView"
android:layout_below="@id/progressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/is_down_please_wait"
android:textColor="@android:color/black"
/>
</RelativeLayout>
</LinearLayout>