Proyectos de Subversion LeadersLinked - Android

Rev

Rev 1 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?xml version="1.0" encoding="utf-8"?>
2 efrain 2
<androidx.constraintlayout.widget.ConstraintLayout
3
    xmlns:android="http://schemas.android.com/apk/res/android"
1 efrain 4
    xmlns:app="http://schemas.android.com/apk/res-auto"
5
    xmlns:tools="http://schemas.android.com/tools"
2 efrain 6
    android:id="@+id/scrollView"
1 efrain 7
    android:layout_width="match_parent"
8
    android:layout_height="match_parent"
9
    tools:context=".MainActivity">
10
 
2 efrain 11
    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
12
        android:id="@+id/swipeRefreshLayout"
1 efrain 13
        android:layout_width="match_parent"
14
        android:layout_height="match_parent"
2 efrain 15
        app:layout_constraintTop_toTopOf="parent"
16
        app:layout_constraintBottom_toBottomOf="parent"
17
        app:layout_constraintLeft_toLeftOf="parent"
18
        app:layout_constraintRight_toRightOf="parent">
1 efrain 19
 
20
 
21
 
2 efrain 22
            <com.cesams.leaderslinked.TouchyWebView
23
                android:id="@+id/webView"
24
                android:layout_width="match_parent"
25
                android:layout_height="match_parent"
26
 
27
                />
28
 
29
 
30
<!--
31
 android:focusable="true"
32
                android:focusableInTouchMode="true"
33
                -->
34
 
35
 
36
 
37
    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
38
 
39
 
40
</androidx.constraintlayout.widget.ConstraintLayout>