1
0
Fork 0
master
Ambrose Chua 2014-05-21 16:13:46 +08:00
parent 34e2f680a7
commit a7b4e7392f
34 changed files with 9 additions and 51 deletions

View File

@ -14,7 +14,8 @@
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.NoActionBar">
android:theme="@style/AppTheme"><!--
android:theme="@android:style/Theme.Holo.Light.NoActionBar"> -->
<activity
android:uiOptions="splitActionBarWhenNarrow"
android:name="com.thunder.simtech.MainActivity"

View File

@ -14,7 +14,8 @@
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.NoActionBar">
android:theme="@style/AppTheme"><!--
android:theme="@android:style/Theme.Holo.Light.NoActionBar"> -->
<activity
android:uiOptions="splitActionBarWhenNarrow"
android:name="com.thunder.simtech.MainActivity"

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

Binary file not shown.

View File

@ -21,20 +21,17 @@ public final class R {
public static final int activity_vertical_margin=0x7f040001;
}
public static final class drawable {
public static final int ab_bottom_solid_dark_holo=0x7f020000;
public static final int ab_solid_dark_holo=0x7f020000;
public static final int ic_launcher=0x7f020001;
public static final int ic_menu_forward=0x7f020002;
}
public static final class id {
public static final int editText=0x7f080000;
public static final int webView=0x7f080001;
public static final int editText=0x7f070000;
public static final int webView=0x7f070001;
}
public static final class layout {
public static final int activity_main=0x7f030000;
}
public static final class menu {
public static final int main=0x7f070000;
}
public static final class string {
public static final int app_name=0x7f050000;
}
@ -48,17 +45,6 @@ public final class R {
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f060000;
/** Application theme.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -7,7 +7,7 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ab_bottom_solid_dark_holo"
android:background="@drawable/ab_solid_dark_holo"
android:gravity="top" >
<EditText

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:simtech="http://schemas.android.com/apk/res-auto" >
<!-- <item android:id="@+id/action_url"
android:title="@string/action_url"
simtech:actionViewClass="android.support.v7.widget.SearchView" /> -->
</menu>

View File

@ -1,11 +0,0 @@
<resources>
<!--
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
<!-- API 11 theme customizations can go here. -->
</style>
</resources>

View File

@ -1,12 +0,0 @@
<resources>
<!--
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- API 14 theme customizations can go here. -->
</style>
</resources>

View File

@ -4,7 +4,7 @@
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.NoActionBar">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to