light theme, changed colors

white
Georg Lukas 2012-03-19 18:34:25 +01:00
rodzic f4c0046546
commit 39cda36312
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -15,7 +15,8 @@
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.VIBRATE"/>
<application android:label="@string/app_name" android:icon="@drawable/icon">
<application android:label="@string/app_name" android:icon="@drawable/icon"
android:theme="@android:style/Theme.Light">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".APRSdroid"

Wyświetl plik

@ -13,6 +13,7 @@ xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_weight="1"
android:focusable="true"
android:focusableInTouchMode="true"
android:cacheColorHint="#0000"
android:descendantFocusability="blocksDescendants"
/>
<TextView android:id="@+id/android:empty"

Wyświetl plik

@ -39,8 +39,8 @@ class StationListAdapter(context : Context, prefs : PrefsWrapper,
context.registerReceiver(locReceiver, new IntentFilter(AprsService.UPDATE))
private val DARK = Array(0xff, 0x80, 0x80, 0x50)
private val BRIGHT = Array(0xff, 0xff, 0xff, 0xe8)
private val DARK = Array(0xff, 0x90, 0x90, 0x50)
private val BRIGHT = Array(0xff, 0x10, 0x10, 0x00)
private val MAX = 30*60*1000
def getAgeColor(ts : Long) : Int = {
val delta = System.currentTimeMillis - ts