Skip to content

Commit

Permalink
The prototype for the main page is done. However, once better button and
Browse files Browse the repository at this point in the history
title styles are available that will be used. For now only simple and
solid color was used.
  • Loading branch information
towhidabsar committed Mar 21, 2014
1 parent 59dc3db commit 2ae631f
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 19 deletions.
Binary file modified ic_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.
Binary file modified res/drawable-hdpi/ic_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 modified res/drawable-mdpi/ic_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 modified res/drawable-xhdpi/ic_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 modified res/drawable-xxhdpi/ic_title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 22 additions & 17 deletions res/layout/login.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#00FF00">
android:layout_height="fill_parent"
android:background="#00ffee" >

<Button
android:id="@+id/button3"
Expand All @@ -11,18 +11,31 @@
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="36dp"
android:background="#FFFFFF"
android:text="Button" />
android:background="@color/green"
android:text="About Us" />

<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="78dp"
android:ems="10"
android:text = "Enter Title Here">

<requestFocus />
</EditText>

<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" />
android:layout_marginBottom="84dp"
android:background="@color/green"
android:text="Login" />

<Button
android:id="@+id/button1"
Expand All @@ -31,15 +44,7 @@
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="240dp"
android:layout_height="240dp"
android:layout_above="@+id/button2"
android:layout_centerHorizontal="true"
android:src="@drawable/multiply_madness_title" />
android:background="@color/green"
android:text="Create Account" />

</RelativeLayout>
5 changes: 3 additions & 2 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

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


<string name="login">Login</string>
<string name="create_account">Create Account</string>
<string name="about_us">About Us</string>
</resources>

0 comments on commit 2ae631f

Please sign in to comment.