Skip to content

Commit

Permalink
Still trying out basic login screens and title page.
Browse files Browse the repository at this point in the history
  • Loading branch information
towhidabsar committed Mar 20, 2014
1 parent 2d780e4 commit 046a43f
Show file tree
Hide file tree
Showing 9 changed files with 61 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>UMM-App</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
Binary file added multiply_madness_title-web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@

# Project target.
target=android-19
android.library.reference.1=../../../androiddeveolpment/gridlayout_v7
Binary file added res/drawable-hdpi/multiply_madness_title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-mdpi/multiply_madness_title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-xhdpi/multiply_madness_title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-xxhdpi/multiply_madness_title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions res/layout/login.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#00FF00">

<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="36dp"
android:background="#FFFFFF"
android:text="Button" />

<Button
android:id="@+id/button2"
android:layout_width="140dp"
android:layout_height="80dp"
android:layout_above="@+id/button3"
android:layout_alignParentLeft="true"
android:layout_marginBottom="86dp"
android:background="#FFFFFF"
android:text="Button" />

<Button
android:id="@+id/button1"
android:layout_width="140dp"
android:layout_height="80dp"
android:layout_alignBaseline="@+id/button2"
android:layout_alignBottom="@+id/button2"
android:layout_alignParentRight="true"
android:background="#FFFFFF"
android:text="Button" />

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button1"
android:layout_centerHorizontal="true"
android:layout_marginBottom="103dp"
android:src="@drawable/multiply_madness_title" />

</RelativeLayout>
6 changes: 3 additions & 3 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<string name="app_name">UMM-App</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<color name="green">#00FF00</color><string name="app_name">UMM-App</string>
<string name="action_settings">Settings</string>


</resources>

0 comments on commit 046a43f

Please sign in to comment.