Initial import. Version 1.0
This commit is contained in:
commit
97afaf3667
21 changed files with 585 additions and 0 deletions
BIN
res/drawable/copy_of_icon_on.png
Normal file
BIN
res/drawable/copy_of_icon_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
res/drawable/focus.png
Normal file
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
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
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
BIN
res/drawable/pressed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
5
res/drawable/widget_inner.xml
Normal file
5
res/drawable/widget_inner.xml
Normal 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
15
res/layout/widget.xml
Normal 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>
|
8
res/values-en/strings.xml
Normal file
8
res/values-en/strings.xml
Normal 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>
|
8
res/values-pt/strings.xml
Normal file
8
res/values-pt/strings.xml
Normal 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
4
res/xml/widget.xml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue