mirror of
https://github.com/cwinfo/envayasms.git
synced 2025-07-01 12:56:17 +00:00
add menu option to forward existing messages from inbox (delivered when kalsms was not enabled)
This commit is contained in:
69
src/org/envaya/kalsms/ForwardInbox.java
Executable file
69
src/org/envaya/kalsms/ForwardInbox.java
Executable file
@ -0,0 +1,69 @@
|
||||
|
||||
package org.envaya.kalsms;
|
||||
|
||||
import android.app.ListActivity;
|
||||
import android.database.Cursor;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.ListView;
|
||||
import android.widget.SimpleCursorAdapter;
|
||||
import android.widget.TextView;
|
||||
|
||||
|
||||
public class ForwardInbox extends ListActivity {
|
||||
|
||||
private App app;
|
||||
|
||||
/** Called when the activity is first created. */
|
||||
@Override
|
||||
public void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
|
||||
app = App.getInstance(getApplicationContext());
|
||||
|
||||
setContentView(R.layout.inbox);
|
||||
|
||||
// undocumented API; see
|
||||
// core/java/android/provider/Telephony.java
|
||||
|
||||
Uri inboxUri = Uri.parse("content://sms/inbox");
|
||||
|
||||
Cursor cur = getContentResolver().query(inboxUri, null, null, null, null);
|
||||
|
||||
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
|
||||
R.layout.inbox_item,
|
||||
cur,
|
||||
new String[] {"address","body"},
|
||||
new int[] {R.id.inbox_address, R.id.inbox_body});
|
||||
|
||||
setListAdapter(adapter);
|
||||
}
|
||||
|
||||
public void forwardSelected(View view) {
|
||||
|
||||
ListView listView = getListView();
|
||||
|
||||
// there is probably a less hacky way to do this...
|
||||
int childCount = listView.getChildCount();
|
||||
for (int i = 0; i < childCount; i++)
|
||||
{
|
||||
View entry = listView.getChildAt(i);
|
||||
CheckBox checkbox = (CheckBox) entry.findViewById(R.id.inbox_checkbox);
|
||||
|
||||
if (checkbox.isChecked())
|
||||
{
|
||||
TextView addressView = (TextView) entry.findViewById(R.id.inbox_address);
|
||||
TextView bodyView = (TextView) entry.findViewById(R.id.inbox_body);
|
||||
IncomingMessage sms = new IncomingMessage(app,
|
||||
addressView.getText().toString(),
|
||||
bodyView.getText().toString());
|
||||
|
||||
app.forwardToServer(sms);
|
||||
}
|
||||
}
|
||||
|
||||
this.finish();
|
||||
}
|
||||
}
|
@ -42,7 +42,7 @@ public class Help extends Activity {
|
||||
|
||||
@Override
|
||||
public boolean onCreateOptionsMenu(Menu menu) {
|
||||
startActivity(new Intent(this, Main.class));
|
||||
this.finish();
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
@ -7,30 +7,40 @@ import org.apache.http.message.BasicNameValuePair;
|
||||
|
||||
public class IncomingMessage extends QueuedMessage {
|
||||
|
||||
public SmsMessage sms;
|
||||
public String from;
|
||||
public String message;
|
||||
public long timestampMillis = 0;
|
||||
|
||||
public IncomingMessage(App app, SmsMessage sms) {
|
||||
super(app);
|
||||
this.sms = sms;
|
||||
this.from = sms.getOriginatingAddress();
|
||||
this.message = sms.getMessageBody();
|
||||
this.timestampMillis = sms.getTimestampMillis();
|
||||
}
|
||||
|
||||
public IncomingMessage(App app, String from, String message) {
|
||||
super(app);
|
||||
this.from = from;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public String getMessageBody()
|
||||
{
|
||||
return sms.getMessageBody();
|
||||
return message;
|
||||
}
|
||||
|
||||
public String getFrom()
|
||||
{
|
||||
return sms.getOriginatingAddress();
|
||||
return from;
|
||||
}
|
||||
|
||||
public String getId()
|
||||
{
|
||||
return sms.getOriginatingAddress() + ":" + sms.getMessageBody() + ":" + sms.getTimestampMillis();
|
||||
return from + ":" + message + ":" + timestampMillis;
|
||||
}
|
||||
|
||||
public void retryNow() {
|
||||
app.log("Retrying forwarding SMS from " + sms.getOriginatingAddress());
|
||||
app.log("Retrying forwarding SMS from " + from);
|
||||
tryForwardToServer();
|
||||
}
|
||||
|
||||
|
@ -132,7 +132,10 @@ public class Main extends Activity {
|
||||
return true;
|
||||
case R.id.retry_now:
|
||||
app.retryStuckMessages();
|
||||
return true;
|
||||
return true;
|
||||
case R.id.forward_inbox:
|
||||
startActivity(new Intent(this, ForwardInbox.class));
|
||||
return true;
|
||||
case R.id.help:
|
||||
startActivity(new Intent(this, Help.class));
|
||||
return true;
|
||||
|
@ -93,17 +93,10 @@ public class Prefs extends PreferenceActivity implements OnSharedPreferenceChang
|
||||
}
|
||||
}
|
||||
|
||||
// first time the Menu key is pressed
|
||||
@Override
|
||||
public boolean onCreateOptionsMenu(Menu menu) {
|
||||
startActivity(new Intent(this, Prefs.class));
|
||||
return (true);
|
||||
}
|
||||
|
||||
// any other time the Menu key is pressed
|
||||
@Override
|
||||
public boolean onPrepareOptionsMenu(Menu menu) {
|
||||
startActivity(new Intent(this, Prefs.class));
|
||||
this.finish();
|
||||
return (true);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user