Skip to content

Commit

Permalink
going back to API Level 7 = 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurzaczek committed May 12, 2014
1 parent 23209fe commit 27c250b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
android:minSdkVersion="7"
android:targetSdkVersion="7" />

<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
Expand Down
2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-8
target=android-7
4 changes: 2 additions & 2 deletions res/layout/apps.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TextView
android:id="@+id/txtMain"
style="@style/Main"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
Expand All @@ -15,7 +15,7 @@
<TextView
android:id="@+id/txtHelp"
style="@style/Help"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txtMain"
android:gravity="center"
Expand Down
4 changes: 2 additions & 2 deletions res/layout/dialer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TextView
android:id="@+id/txtMain"
style="@style/Main"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
Expand All @@ -15,7 +15,7 @@
<TextView
android:id="@+id/txtCurrentDigit"
style="@style/Help"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txtMain"
android:gravity="center"
Expand Down
4 changes: 2 additions & 2 deletions res/layout/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TextView
android:id="@+id/txtMain"
style="@style/Main"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
Expand All @@ -15,7 +15,7 @@
<TextView
android:id="@+id/txtHelp"
style="@style/Help"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txtMain"
android:gravity="center"
Expand Down
4 changes: 2 additions & 2 deletions res/layout/missedcalls.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TextView
android:id="@+id/txtMain"
style="@style/Main"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
Expand All @@ -15,7 +15,7 @@
<TextView
android:id="@+id/txtHelp"
style="@style/Help"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txtMain"
android:gravity="center"
Expand Down
4 changes: 2 additions & 2 deletions res/layout/phonebook.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TextView
android:id="@+id/txtMain"
style="@style/Main"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
Expand All @@ -15,7 +15,7 @@
<TextView
android:id="@+id/txtHelp"
style="@style/Help"
android:layout_width="match_parent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txtMain"
android:gravity="center"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected void onLongPress() {
public boolean onTouchEvent(MotionEvent event) {
this.mDetector.onTouchEvent(event);

int action = event.getActionMasked();
int action = event.getAction();
switch (action) {
case MotionEvent.ACTION_DOWN:
scrollSaveX = event.getX();
Expand Down

0 comments on commit 27c250b

Please sign in to comment.