Subversion Repositories SmartDukaan

Rev

Rev 14792 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
14792 manas 1
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
3
    android:background="@color/White"
4
    android:layout_height="match_parent" tools:context="com.saholic.profittill.main.SearchFragment">
5
 
6
<!--    <WebView
7
        android:id="@+id/searchWebView"
8
        android:layout_width="match_parent"
9
        android:layout_height="match_parent"></WebView>-->
10
 
11
    <ScrollView
12
        android:layout_width="match_parent"
13
        android:layout_gravity="center"
14
        android:layout_height="match_parent">
15
    <RelativeLayout
16
        android:background="@color/White"
17
        android:layout_gravity="center"
18
        android:layout_width="match_parent"
19
        android:layout_height="match_parent"
20
        android:id="@+id/aboutus">
21
        <TextView
22
            android:id="@+id/nointernetconncetion"
23
            android:text="No Internet Connection. Please try again"
21197 rajender 24
            android:textColor="@color/grey_black"
14792 manas 25
            android:textSize="25dp"
26
            android:gravity="center"
27
            android:layout_centerHorizontal="true"
28
            android:layout_width="wrap_content"
29
            android:layout_height="wrap_content" />
30
        <ImageView
31
            android:src="@drawable/wifiimage"
32
            android:layout_centerInParent="true"
33
            android:layout_below="@+id/nointernetconncetion"
34
            android:layout_width="100dp"
35
            android:id="@+id/wifi"
36
            android:layout_marginTop="-20dp"
37
            android:layout_height="wrap_content" />
38
    <Button
39
        android:id="@+id/checkInternet"
40
        android:text="Retry"
41
        android:layout_below="@+id/wifi"
42
        android:background="@drawable/button"
43
        android:layout_gravity="center_horizontal|center"
44
        android:layout_width="wrap_content"
45
        android:layout_centerHorizontal="true"
46
        android:layout_height="wrap_content" />
47
</RelativeLayout>
48
    </ScrollView>
49
</FrameLayout>