First commit

This commit is contained in:
Daniele Verducci
2014-03-08 22:56:11 +01:00
commit 85096cd7cd
63 changed files with 2521 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@android:color/background_dark"
android:padding="20dp"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="@string/srv"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>