Fix lint issues
@ -1,7 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.hectorone.multismssender" android:versionName="2.3" android:versionCode="13">
|
package="com.hectorone.multismssender" android:versionName="2.3" android:versionCode="13">
|
||||||
<application android:label="@string/app_name" android:icon="@drawable/multisms">
|
<uses-sdk android:minSdkVersion="5" />
|
||||||
|
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
|
||||||
|
<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
|
||||||
|
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
|
||||||
|
<uses-permission android:name="android.permission.WRITE_SMS"></uses-permission>
|
||||||
|
<uses-permission android:name="android.permission.READ_SMS"></uses-permission>
|
||||||
|
<application android:label="@string/app_name" android:icon="@drawable/multisms"
|
||||||
|
android:allowBackup="true" >
|
||||||
<activity android:name=".MultiSmsSender" android:label="@string/app_name">
|
<activity android:name=".MultiSmsSender" android:label="@string/app_name">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
@ -19,12 +26,8 @@
|
|||||||
<data android:mimeType="vnd.android.cursor.item/vnd.com.hectorone.multismssender.provider.entry"/>
|
<data android:mimeType="vnd.android.cursor.item/vnd.com.hectorone.multismssender.provider.entry"/>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
<provider android:authorities="com.hectorone.multismssender.provider" android:name=".DeliveryDbAdapter"></provider>
|
<provider android:authorities="com.hectorone.multismssender.provider" android:name=".DeliveryDbAdapter"></provider>
|
||||||
</application>
|
</application>
|
||||||
<uses-sdk android:minSdkVersion="5" />
|
|
||||||
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
|
|
||||||
<uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
|
|
||||||
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
|
|
||||||
<uses-permission android:name="android.permission.WRITE_SMS"></uses-permission>
|
|
||||||
<uses-permission android:name="android.permission.READ_SMS"></uses-permission>
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
BIN
res/drawable-hdpi/btn_check_buttonless_off.png
Normal file
After Width: | Height: | Size: 895 B |
BIN
res/drawable-hdpi/btn_check_buttonless_on.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
res/drawable-ldpi/btn_check_buttonless_off.png
Normal file
After Width: | Height: | Size: 516 B |
BIN
res/drawable-ldpi/btn_check_buttonless_on.png
Normal file
After Width: | Height: | Size: 670 B |
0
res/drawable/btn_check_buttonless_off.png → res/drawable-mdpi/btn_check_buttonless_off.png
Normal file → Executable file
Before Width: | Height: | Size: 608 B After Width: | Height: | Size: 608 B |
0
res/drawable/btn_check_buttonless_on.png → res/drawable-mdpi/btn_check_buttonless_on.png
Normal file → Executable file
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 721 B |
BIN
res/drawable-xhdpi/btn_check_buttonless_off.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable-xhdpi/btn_check_buttonless_on.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 5.7 KiB |
@ -2,7 +2,9 @@
|
|||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
||||||
android:orientation="horizontal" android:id="@+id/deliveryEntry">
|
android:orientation="horizontal" android:id="@+id/deliveryEntry">
|
||||||
<ImageView android:id="@+id/delivered" android:layout_width="wrap_content"
|
<ImageView android:id="@+id/delivered"
|
||||||
|
android:contentDescription="@string/delivery"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content" />
|
android:layout_height="wrap_content" />
|
||||||
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical">
|
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical">
|
||||||
<TextView android:id="@+id/name" android:layout_width="wrap_content"
|
<TextView android:id="@+id/name" android:layout_width="wrap_content"
|
||||||
|
@ -31,8 +31,8 @@
|
|||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<EditText android:id="@+id/editor" android:layout_width="fill_parent"
|
<EditText android:id="@+id/editor" android:layout_width="fill_parent"
|
||||||
android:layout_height="0dip" android:autoText="true"
|
android:layout_height="0dip"
|
||||||
android:capitalize="sentences" android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:hint="@string/entermessage"
|
android:hint="@string/entermessage"
|
||||||
android:nextFocusRight="@+id/send"
|
android:nextFocusRight="@+id/send"
|
||||||
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
|
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout
|
||||||
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
||||||
android:orientation="horizontal" android:background="#0099CC" >
|
android:orientation="horizontal" android:background="#0099CC" >
|
||||||
<Button
|
<Button
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
</CheckBox>
|
</CheckBox>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical" >
|
android:orientation="vertical" >
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
<string name="cancel">إلغاء</string>
|
<string name="cancel">إلغاء</string>
|
||||||
<string name="nocontacts"> لا جهات الاتصال</string>
|
<string name="nocontacts"> لا جهات الاتصال</string>
|
||||||
<string name="nogroups">!! لا توجد مجموعات</string>
|
<string name="nogroups">!! لا توجد مجموعات</string>
|
||||||
<string name="sending">...إرسال رسالة</string>
|
<string name="sending">…إرسال رسالة</string>
|
||||||
<string name="wait">...الرجاء الانتظار ريث الإرسال</string>
|
<string name="wait">…الرجاء الانتظار ريث الإرسال</string>
|
||||||
<string name="entermessage">أدخل رسالتك</string>
|
<string name="entermessage">أدخل رسالتك</string>
|
||||||
<string name="entergroupname">اسم المجموعة</string>
|
<string name="entergroupname">اسم المجموعة</string>
|
||||||
<string name="to">إلى</string>
|
<string name="to">إلى</string>
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
<string name="cancel">Abbrechen</string>
|
<string name="cancel">Abbrechen</string>
|
||||||
<string name="nocontacts">Keine Kontakte!!</string>
|
<string name="nocontacts">Keine Kontakte!!</string>
|
||||||
<string name="nogroups">Keine Gruppen!!</string>
|
<string name="nogroups">Keine Gruppen!!</string>
|
||||||
<string name="sending">Sende Nachricht...</string>
|
<string name="sending">Sende Nachricht…</string>
|
||||||
<string name="wait">Please wait while sending...</string>
|
<string name="wait">Please wait while sending…</string>
|
||||||
<string name="entermessage">Geben Sie Ihre Nachricht ein</string>
|
<string name="entermessage">Geben Sie Ihre Nachricht ein</string>
|
||||||
<string name="entergroupname">Geben Sie einen Gruppennamen ein</string>
|
<string name="entergroupname">Geben Sie einen Gruppennamen ein</string>
|
||||||
<string name="nodelivery">Keine Zustellungsberichte verfügbar</string>
|
<string name="nodelivery">Keine Zustellungsberichte verfügbar</string>
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
<string name="cancel">Annuler</string>
|
<string name="cancel">Annuler</string>
|
||||||
<string name="nocontacts">Pas de contacts!!</string>
|
<string name="nocontacts">Pas de contacts!!</string>
|
||||||
<string name="nogroups">Pas de groupes!!</string>
|
<string name="nogroups">Pas de groupes!!</string>
|
||||||
<string name="sending">Envoie d\'un message...</string>
|
<string name="sending">Envoie d\'un message…</string>
|
||||||
<string name="wait">Veuillez patienter pendant l\'envoie...</string>
|
<string name="wait">Veuillez patienter pendant l\'envoie…</string>
|
||||||
<string name="entermessage">Saisissez votre message</string>
|
<string name="entermessage">Saisissez votre message</string>
|
||||||
<string name="entergroupname">Nom du groupe</string>
|
<string name="entergroupname">Nom du groupe</string>
|
||||||
<string name="to">À</string>
|
<string name="to">À</string>
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
<string name="cancel">Annulla</string>
|
<string name="cancel">Annulla</string>
|
||||||
<string name="nocontacts">Nessun contatto!!</string>
|
<string name="nocontacts">Nessun contatto!!</string>
|
||||||
<string name="nogroups">Nessun gruppo!!</string>
|
<string name="nogroups">Nessun gruppo!!</string>
|
||||||
<string name="sending">Invio i messaggi...</string>
|
<string name="sending">Invio i messaggi…</string>
|
||||||
<string name="wait">Invio in corso. Prego, attendi...</string>
|
<string name="wait">Invio in corso. Prego, attendi…</string>
|
||||||
<string name="entermessage">Scrivi il messaggio</string>
|
<string name="entermessage">Scrivi il messaggio</string>
|
||||||
<string name="entergroupname">Scrivi il nome del Gruppo</string>
|
<string name="entergroupname">Scrivi il nome del Gruppo</string>
|
||||||
<string name="nodelivery">Nessuna ricevuta di ritorno disponibile</string>
|
<string name="nodelivery">Nessuna ricevuta di ritorno disponibile</string>
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
<string name="cancel">Cancelar</string>
|
<string name="cancel">Cancelar</string>
|
||||||
<string name="nocontacts">Nenhum Contato!!</string>
|
<string name="nocontacts">Nenhum Contato!!</string>
|
||||||
<string name="nogroups">Nenhum Grupo!!</string>
|
<string name="nogroups">Nenhum Grupo!!</string>
|
||||||
<string name="sending">Enviando Mensagem...</string>
|
<string name="sending">Enviando Mensagem…</string>
|
||||||
<string name="wait">Por favor aguarde...</string>
|
<string name="wait">Por favor aguarde…</string>
|
||||||
<string name="entermessage">Digite sua Mensagem</string>
|
<string name="entermessage">Digite sua Mensagem</string>
|
||||||
<string name="entergroupname">Digite o Nome do Grupo</string>
|
<string name="entergroupname">Digite o Nome do Grupo</string>
|
||||||
<string name="nodelivery">Entrega indisponível</string>
|
<string name="nodelivery">Entrega indisponível</string>
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
<string name="send">Send</string>
|
<string name="send">Send</string>
|
||||||
<string name="add">Add</string>
|
<string name="add">Add</string>
|
||||||
<string name="contacts">Contacts</string>
|
<string name="contacts">Contacts</string>
|
||||||
<string name="ok">Ok</string>
|
<string name="ok">OK</string>
|
||||||
<string name="cancel">Cancel</string>
|
<string name="cancel">Cancel</string>
|
||||||
<string name="nocontacts">No Contacts!!</string>
|
<string name="nocontacts">No Contacts!!</string>
|
||||||
<string name="nogroups">No Groups!!</string>
|
<string name="nogroups">No Groups!!</string>
|
||||||
<string name="sending">Sending message...</string>
|
<string name="sending">Sending message…</string>
|
||||||
<string name="wait">Please wait while sending...</string>
|
<string name="wait">Please wait while sending…</string>
|
||||||
<string name="entermessage">Enter your message</string>
|
<string name="entermessage">Enter your message</string>
|
||||||
<string name="entergroupname">Enter Group Name</string>
|
<string name="entergroupname">Enter Group Name</string>
|
||||||
<string name="nodelivery">No delivery reports available</string>
|
<string name="nodelivery">No delivery reports available</string>
|
||||||
|