PageRenderTime 36ms CodeModel.GetById 23ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

/duelos_android/res/layout/mispuntos.xml

https://bitbucket.org/jgorozco/ejemplosandroid
XML | 41 lines | 35 code | 6 blank | 0 comment | 0 complexity | 2ba707bf5e3ce4f13ad79327836f2098 MD5 | raw file
 1<?xml version="1.0" encoding="utf-8"?>
 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3    android:layout_width="match_parent"
 4    android:layout_height="match_parent"
 5    android:orientation="vertical" >
 6
 7
 8
 9    <RelativeLayout
10        android:layout_width="match_parent"
11        android:layout_height="48dp" >
12
13        <TextView
14            android:id="@+id/textView2"
15            android:layout_width="70dp"
16            android:layout_height="wrap_content"
17            android:layout_alignParentLeft="true"
18            android:layout_centerVertical="true"
19            android:layout_marginLeft="22dp"
20            android:fitsSystemWindows="true"
21            android:text="Fecha"
22            android:textAppearance="?android:attr/textAppearanceMedium" />
23
24        <TextView
25            android:id="@+id/textView1"
26            android:layout_width="70dp"
27            android:layout_height="wrap_content"
28            android:layout_alignBaseline="@+id/textView2"
29            android:layout_alignBottom="@+id/textView2"
30            android:layout_alignParentRight="true"
31            android:layout_marginRight="17dp"
32            android:text="Puntos"
33            android:textAppearance="?android:attr/textAppearanceMedium" />
34
35    </RelativeLayout>
36
37    <ListView
38        android:id="@+id/puntos"
39        android:layout_width="match_parent"
40        android:layout_height="wrap_content" >
41    </ListView>
42
43</LinearLayout>