1
0
Fork 0

Initial import. Version 1.0

This commit is contained in:
Carlos Mogas da Silva 2010-04-24 22:02:20 +01:00
commit 97afaf3667
21 changed files with 585 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
res/drawable/focus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
res/drawable/icon_off.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 KiB

BIN
res/drawable/icon_on.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
res/drawable/pressed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/pressed" />
<item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/focus" />
</selector>

15
res/layout/widget.xml Normal file
View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="72dip"
android:layout_height="72dip"
android:id="@+id/widget"
android:gravity="center">
<ImageButton
android:id="@+id/button"
android:layout_width="72dip"
android:layout_height="72dip"
android:background="@drawable/widget_inner"
android:layout_gravity="center_horizontal"
/>
</LinearLayout>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">K-9 Data Killer</string>
<string name="toast_text">K-9 Mail background sync has been</string>
<string name="enabled">enabled</string>
<string name="disabled">disabled</string>
<string name="k9notinstalled">K-9 Mail is not installed or you have a really old version of it</string>
</resources>

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">K-9 Data Killer</string>
<string name="toast_text">A sincronização do K-9 Mail foi</string>
<string name="enabled">activada</string>
<string name="disabled">desactivada</string>
<string name="k9notinstalled">O K-9 Mail não está instalado ou então tem uma versão muito antiga</string>
</resources>

4
res/xml/widget.xml Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider
xmlns:android="http://schemas.android.com/apk/res/android">
</appwidget-provider>