Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iogorodov committed Jul 3, 2014
1 parent 2578d4e commit 9e03ab4
Show file tree
Hide file tree
Showing 33 changed files with 994 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.settings/
.classpath
.project
bin/
gen/
local.properties
22 changes: 22 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.iogorodov.todoforgeeks" >
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:allowBackup="false"
android:theme="@style/AppTheme.Light" >
<activity
android:name="org.iogorodov.todoforgeeks.MainActivity"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
17 changes: 17 additions & 0 deletions ant.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file is used to override default values used by the Ant build system.
#
# This file must be checked into Version Control Systems, as it is
# integral to the build system of your project.

# This file is only used by the Ant script.

# You can use this to override default values such as
# 'source.dir' for the location of your java source folder and
# 'out.dir' for the location of your output folder.

# You can also use it define how the release builds are signed by declaring
# the following properties:
# 'key.store' for the location of your keystore and
# 'key.alias' for the name of the key to use.
# The password will be asked during the build when you use the 'release' target.

Binary file added art/ic_launcher.pdn
Binary file not shown.
92 changes: 92 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ToDoForGeeks" default="help">

<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties"/>

<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
This is the place to change some Ant specific build properties.
Here are some properties you may want to change/update:
source.dir
The name of the source directory. Default is 'src'.
out.dir
The name of the output directory. Default is 'bin'.
For other overridable properties, look at the beginning of the rules
files in the SDK, at tools/ant/build.xml
Properties related to the SDK location or the project target should
be updated using the 'android' tool with the 'update' action.
This file is an integral part of the build system for your
application and should be checked into Version Control Systems.
-->
<property file="ant.properties"/>

<!-- if sdk.dir was not set from one of the property file, then
get it from the ANDROID_HOME env var.
This must be done before we load project.properties since
the proguard config can use sdk.dir -->
<property environment="env"/>
<condition property="sdk.dir" value="${env.ANDROID_HOME}">
<isset property="env.ANDROID_HOME"/>
</condition>

<!-- The project.properties file is created and updated by the 'android'
tool, as well as ADT.
This contains project specific properties such as project target, and library
dependencies. Lower level build properties are stored in ant.properties
(or in .classpath for Eclipse projects).
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<loadproperties srcFile="project.properties"/>

<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
unless="sdk.dir"
/>

<!--
Import per project custom build rules if present at the root of the project.
This is the place to put custom intermediary targets such as:
-pre-build
-pre-compile
-post-compile (This is typically used for code obfuscation.
Compiled code location: ${out.classes.absolute.dir}
If this is not done in place, override ${out.dex.input.absolute.dir})
-post-package
-post-build
-pre-clean
-->
<import file="custom_rules.xml" optional="true"/>

<!-- Import the actual build file.
To customize existing targets, there are two options:
- Customize only one target:
- copy/paste the target into this file, *before* the
<import> task.
- customize it to your needs.
- Customize the whole content of build.xml
- copy/paste the content of the rules files (minus the top node)
into this file, replacing the <import> task.
- customize to your needs.
***********************
****** IMPORTANT ******
***********************
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
in order to avoid having your file be overridden by tools such as "android update project"
-->
<!-- version-tag: 1 -->
<import file="${sdk.dir}/tools/ant/build.xml"/>

</project>
20 changes: 20 additions & 0 deletions proguard-project.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
14 changes: 14 additions & 0 deletions project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-19
Binary file added res/drawable-hdpi/ic_launcher.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/ic_launcher.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/ic_launcher.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/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions res/drawable/light_counter_background.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="5dp" />
<padding
android:bottom="@dimen/counter_background_ver_padding"
android:top="@dimen/counter_background_ver_padding"
android:left="@dimen/counter_background_hor_padding"
android:right="@dimen/counter_background_hor_padding" />
<solid android:color="@color/light_active" />
</shape>
8 changes: 8 additions & 0 deletions res/drawable/light_ic_drawer.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/light_ic_drawer_highlight" android:state_pressed="true" />
<item android:drawable="@drawable/light_ic_drawer_highlight" android:state_selected="true" />
<item android:drawable="@drawable/light_ic_drawer_highlight" android:state_checked="true" />
<item android:drawable="@drawable/light_ic_drawer_default" />
</selector>

15 changes: 15 additions & 0 deletions res/drawable/light_ic_drawer_default.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="0dp" android:bottom="@dimen/drawer_icon_height">
<shape android:shape="rectangle"><solid android:color="@color/light_inactive"/></shape>
</item>
<item android:top="@dimen/drawer_icon_half_height" android:bottom="@dimen/drawer_icon_half_height">
<shape android:shape="rectangle"><solid android:color="@color/light_inactive"/></shape>
</item>
<item android:top="@dimen/drawer_icon_height" android:bottom="0dp">
<shape android:shape="rectangle">
<size android:width="@dimen/drawer_icon_width" android:height="@dimen/drawer_icon_line_height"/>
<solid android:color="@color/light_inactive"/>
</shape>
</item>
</layer-list>
15 changes: 15 additions & 0 deletions res/drawable/light_ic_drawer_highlight.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="0dp" android:bottom="@dimen/drawer_icon_height">
<shape android:shape="rectangle"><solid android:color="@color/light_active"/></shape>
</item>
<item android:top="@dimen/drawer_icon_half_height" android:bottom="@dimen/drawer_icon_half_height">
<shape android:shape="rectangle"><solid android:color="@color/light_active"/></shape>
</item>
<item android:top="@dimen/drawer_icon_height" android:bottom="0dp">
<shape android:shape="rectangle">
<size android:width="@dimen/drawer_icon_width" android:height="@dimen/drawer_icon_line_height"/>
<solid android:color="@color/light_active"/>
</shape>
</item>
</layer-list>
6 changes: 6 additions & 0 deletions res/drawable/light_note_background.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/light_control_background" />
<stroke android:color="@color/light_inactive" android:width="@dimen/divider_height" />
</shape>
10 changes: 10 additions & 0 deletions res/drawable/light_selector_background.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/light_selector_background_hightlight" android:state_pressed="true" />
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
</selector>
6 changes: 6 additions & 0 deletions res/drawable/light_selector_background_hightlight.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/light_selector" />
</shape>
87 changes: 87 additions & 0 deletions res/layout/main.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="org.iogorodov.todoforgeeks.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/title_height"
android:orientation="horizontal"
android:background="?attr/title_background_color" >
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:clickable="true"
android:paddingRight="@dimen/drawer_title_padding" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:src="?attr/drawer_icon"
android:scaleType="center"
android:contentDescription="@null" />
</FrameLayout>
<TextView android:id="@+id/main_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textSize="@dimen/title_text"
android:gravity="start|center_vertical"
style="@style/Widget.TextView.Condensed"
android:text="@string/main_all_notes" />
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<TextView android:id="@+id/main_counter"
style="@style/Application.Title.Counter" />
<TextView
style="@style/Application.Title.Button"
android:text="@string/main_menu_save" />
<TextView
style="@style/Application.Title.Button"
android:text="@string/main_menu_edit" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/divider_height"
android:background="?attr/frame_color" />
<ListView android:id="@+id/main_notes"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:listSelector="@android:color/transparent"
android:cacheColorHint="@android:color/transparent"
android:overScrollMode="never"
/>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/divider_height"
android:background="?attr/frame_color" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="?attr/edit_text_background_color" >
<FrameLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingTop="@dimen/edit_ver_padding"
android:paddingBottom="@dimen/edit_ver_padding" >
<EditText android:id="@+id/main_input_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine|textCapSentences"
android:textSize="@dimen/edit_text" >
<requestFocus />
</EditText>
</FrameLayout>
<TextView android:id="@+id/main_add"
style="@style/Application.Title.Button"
android:layout_width="wrap_content"
android:text="@string/main_add" />
</LinearLayout>
</LinearLayout>
20 changes: 20 additions & 0 deletions res/layout/note.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="@dimen/note_outer_ver_padding"
android:paddingLeft="@dimen/note_outer_hor_padding"
android:paddingRight="@dimen/note_outer_hor_padding" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/note_background" >
<TextView android:id="@+id/note_text"
style="@style/Application.Note" />
</FrameLayout>
<View android:id="@+id/note_bottom_padding"
android:layout_width="match_parent"
android:layout_height="@dimen/note_outer_ver_padding" />
</LinearLayout>
10 changes: 10 additions & 0 deletions res/values-v16/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Widget.TextView.Light" parent="android:Widget.TextView">
<item name="android:fontFamily">sans-serif-light</item>
</style>

<style name="Widget.TextView.Condensed" parent="android:Widget.TextView">
<item name="android:fontFamily">sans-serif-condensed</item>
</style>
</resources>
11 changes: 11 additions & 0 deletions res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="light_window_background">#f5f4f3</color>
<color name="light_control_background">#ffffff</color>
<color name="light_title_background">#e0e0e0</color>
<color name="light_text">#000000</color>
<color name="light_inverse_text">#ffffff</color>
<color name="light_active">#ff2080f0</color>
<color name="light_inactive">#c0c0c0</color>
<color name="light_selector">#80c0c0c0</color>
</resources>
Loading

0 comments on commit 9e03ab4

Please sign in to comment.