Proyectos de Subversion LeadersLinked - Android

Rev

Rev 2 | | 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"
6
    android:layout_width="match_parent"
7
    android:layout_height="match_parent"
8
    tools:context=".MainActivity">
9
 
2 efrain 10
    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
11
        android:id="@+id/swipeRefreshLayout"
1 efrain 12
        android:layout_width="match_parent"
13
        android:layout_height="match_parent"
2 efrain 14
        app:layout_constraintTop_toTopOf="parent"
15
        app:layout_constraintBottom_toBottomOf="parent"
16
        app:layout_constraintLeft_toLeftOf="parent"
17
        app:layout_constraintRight_toRightOf="parent">
1 efrain 18
 
19
 
20
 
3 efrain 21
            <com.cesams.leaderslinked.v2.TouchyWebView
2 efrain 22
                android:id="@+id/webView"
23
                android:layout_width="match_parent"
24
                android:layout_height="match_parent"
25
 
26
                />
27
 
28
 
29
<!--
30
 android:focusable="true"
31
                android:focusableInTouchMode="true"
32
                -->
33
 
34
 
35
 
36
    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
37
 
38
 
39
</androidx.constraintlayout.widget.ConstraintLayout>