Skip to content

Commit 4903df2

Browse files
author
Danielle Vass
committed
initial upload
1 parent 23487dc commit 4903df2

180 files changed

Lines changed: 6146 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AndroidBootstrap/.classpath

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>

AndroidBootstrap/.project

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>AndroidBootstrap</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>

AndroidBootstrap/.svn/entries

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12

AndroidBootstrap/.svn/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
<item android:state_pressed="true"><shape>
5+
<solid android:color="@color/bbutton_danger_pressed" />
6+
<stroke android:width="1dp" android:color="@color/bbutton_danger_edge" />
7+
</shape></item>
8+
9+
<item android:state_enabled="false"><shape>
10+
<solid android:color="@color/bbutton_danger_disabled" />
11+
<stroke android:width="1dp" android:color="@color/bbutton_danger_disabled_edge" />
12+
</shape></item>
13+
14+
15+
<item><shape>
16+
<solid android:color="@color/bbutton_danger" />
17+
<stroke android:width="1dp" android:color="@color/bbutton_danger_edge" />
18+
</shape></item>
19+
20+
</selector>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.beardedhen.bbutton"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="7"
9+
android:targetSdkVersion="17" />
10+
11+
<application
12+
android:allowBackup="true"
13+
android:icon="@drawable/ic_launcher"
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
16+
<activity
17+
android:name="com.beardedhen.bbutton.MainActivity"
18+
android:label="@string/app_name" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
</application>
26+
27+
</manifest>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
<item android:state_pressed="true"><shape>
5+
<solid android:color="@color/bbutton_info_pressed" />
6+
<stroke android:width="1dp" android:color="@color/bbutton_info_edge" />
7+
</shape></item>
8+
9+
<item android:state_enabled="false"><shape>
10+
<solid android:color="@color/bbutton_info_disabled" />
11+
<stroke android:width="1dp" android:color="@color/bbutton_info_disabled_edge" />
12+
</shape></item>
13+
14+
15+
<item><shape>
16+
<solid android:color="@color/bbutton_info" />
17+
<stroke android:width="1dp" android:color="@color/bbutton_info_edge" />
18+
</shape></item>
19+
20+
</selector>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
2+
3+
<item
4+
android:id="@+id/action_settings"
5+
android:orderInCategory="100"
6+
android:showAsAction="never"
7+
android:title="@string/action_settings"/>
8+
9+
</menu>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
<item android:state_pressed="true"><shape>
5+
<solid android:color="@color/bbutton_info_pressed" />
6+
<stroke android:width="1dp" android:color="@color/bbutton_info_edge" />
7+
<corners android:radius="@dimen/bbuton_rounded_corner_radius"/>
8+
</shape></item>
9+
10+
<item android:state_enabled="false"><shape>
11+
<solid android:color="@color/bbutton_info_disabled" />
12+
<stroke android:width="1dp" android:color="@color/bbutton_info_disabled_edge" />
13+
<corners android:radius="@dimen/bbuton_rounded_corner_radius"/>
14+
</shape></item>
15+
16+
17+
<item><shape>
18+
<solid android:color="@color/bbutton_info" />
19+
<stroke android:width="1dp" android:color="@color/bbutton_info_edge" />
20+
<corners android:radius="@dimen/bbuton_rounded_corner_radius"/>
21+
</shape></item>
22+
23+
</selector>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
<item android:state_pressed="true"><shape>
5+
<solid android:color="@color/bbutton_primary_pressed" />
6+
<stroke android:width="1dp" android:color="@color/bbutton_primary_edge" />
7+
</shape></item>
8+
9+
<item android:state_enabled="false"><shape>
10+
<solid android:color="@color/bbutton_primary_disabled" />
11+
<stroke android:width="1dp" android:color="@color/bbutton_primary_disabled_edge" />
12+
</shape></item>
13+
14+
15+
<item><shape>
16+
<solid android:color="@color/bbutton_primary" />
17+
<stroke android:width="1dp" android:color="@color/bbutton_primary_edge" />
18+
</shape></item>
19+
20+
</selector>

0 commit comments

Comments
 (0)