Skip to content

Commit

Permalink
Fixed: Crash caused due to fix in 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
budowski committed Mar 16, 2012
1 parent 4f33c7d commit 710d6f4
Show file tree
Hide file tree
Showing 3 changed files with 141 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .classpath
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="lib" path="C:/Projects/Eclipse-Android/Budoist/lib/gson-1.7.1.jar"/>
<classpathentry kind="lib" path="C:/Projects/Eclipse-Android/Budoist/lib/gson-1.7.1-javadoc.jar"/>
<classpathentry kind="lib" path="C:/Projects/Eclipse-Android/Budoist/lib/gson-1.7.1-sources.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Budoist</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
97 changes: 97 additions & 0 deletions res/layout/top_toolbar.xml
@@ -0,0 +1,97 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_horizontal"
android:paddingBottom="5dp"
android:paddingTop="5dp">

<LinearLayout
android:id="@+id/top_toolbar_projects"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal">

<ImageView
android:id="@+id/top_toolbar_projects_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/projects"
/>

<TextView
android:id="@+id/top_toolbar_projects_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Projects"
android:textColor="#000000"
/>
</LinearLayout>

<LinearLayout
android:id="@+id/top_toolbar_labels"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal"
android:paddingLeft="30dp">

<ImageView
android:id="@+id/top_toolbar_labels_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/labels"
/>

<TextView
android:id="@+id/top_toolbar_labels_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Labels"
android:textColor="#000000"
/>
</LinearLayout>

<LinearLayout
android:id="@+id/top_toolbar_queries"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal"
android:paddingLeft="30dp">

<ImageView
android:id="@+id/top_toolbar_queries_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/queries"
/>

<TextView
android:id="@+id/top_toolbar_queries_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Queries"
android:textColor="#000000"
/>
</LinearLayout>
</LinearLayout>

<ImageView
android:id="@+id/top_toolbar_add_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/add_item"
android:paddingRight="20dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
/>
</RelativeLayout>

0 comments on commit 710d6f4

Please sign in to comment.