forked from len0rd/rockbox
Clean up r28408 coding style a bit to follow our guidelines with regard to
brace placement, tabs and 80 char line width. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28410 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cc758e42b9
commit
2d05d2f9da
5 changed files with 78 additions and 69 deletions
|
@ -2,6 +2,7 @@ package org.rockbox;
|
|||
|
||||
import android.content.Intent;
|
||||
|
||||
public interface HostCallback {
|
||||
public void onComplete(int resultCode, Intent data);
|
||||
public interface HostCallback
|
||||
{
|
||||
public void onComplete(int resultCode, Intent data);
|
||||
}
|
||||
|
|
|
@ -10,32 +10,39 @@ import android.view.LayoutInflater;
|
|||
import android.view.View;
|
||||
import android.widget.EditText;
|
||||
|
||||
public class KeyboardActivity extends Activity {
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
public class KeyboardActivity extends Activity
|
||||
{
|
||||
public void onCreate(Bundle savedInstanceState)
|
||||
{
|
||||
super.onCreate(savedInstanceState);
|
||||
LayoutInflater inflater=LayoutInflater.from(this);
|
||||
View addView=inflater.inflate(R.layout.keyboardinput, null);
|
||||
EditText input = (EditText) addView.findViewById(R.id.KbdInput);
|
||||
input.setText(getIntent().getStringExtra("value"));
|
||||
new AlertDialog.Builder(this)
|
||||
.setTitle(R.string.KbdInputTitle)
|
||||
.setView(addView)
|
||||
.setIcon(R.drawable.icon)
|
||||
.setPositiveButton(R.string.OK, new DialogInterface.OnClickListener() {
|
||||
public void onClick(DialogInterface dialog, int whichButton) {
|
||||
EditText input = (EditText)((Dialog)dialog).findViewById(R.id.KbdInput);
|
||||
Editable s = input.getText();
|
||||
getIntent().putExtra("value", s.toString());
|
||||
setResult(RESULT_OK, getIntent());
|
||||
finish();
|
||||
}
|
||||
})
|
||||
.setNegativeButton(R.string.Cancel, new DialogInterface.OnClickListener() {
|
||||
public void onClick(DialogInterface dialog, int whichButton) {
|
||||
setResult(RESULT_CANCELED, getIntent());
|
||||
finish();
|
||||
}
|
||||
})
|
||||
.show();
|
||||
.setTitle(R.string.KbdInputTitle)
|
||||
.setView(addView)
|
||||
.setIcon(R.drawable.icon)
|
||||
.setPositiveButton(R.string.OK, new DialogInterface.OnClickListener()
|
||||
{
|
||||
public void onClick(DialogInterface dialog, int whichButton) {
|
||||
EditText input = (EditText)((Dialog)dialog)
|
||||
.findViewById(R.id.KbdInput);
|
||||
Editable s = input.getText();
|
||||
getIntent().putExtra("value", s.toString());
|
||||
setResult(RESULT_OK, getIntent());
|
||||
finish();
|
||||
}
|
||||
})
|
||||
|
||||
.setNegativeButton(R.string.Cancel, new DialogInterface.OnClickListener()
|
||||
{
|
||||
public void onClick(DialogInterface dialog, int whichButton)
|
||||
{
|
||||
setResult(RESULT_CANCELED, getIntent());
|
||||
finish();
|
||||
}
|
||||
})
|
||||
.show();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,7 +24,6 @@ package org.rockbox;
|
|||
import android.app.Activity;
|
||||
import android.app.ProgressDialog;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.ViewGroup;
|
||||
|
@ -167,15 +166,15 @@ public class RockboxActivity extends Activity
|
|||
if (hostcallback != null)
|
||||
{
|
||||
LOG("Something has gone wrong");
|
||||
}
|
||||
hostcallback = callback;
|
||||
startActivityForResult(i, 0);
|
||||
}
|
||||
hostcallback = callback;
|
||||
startActivityForResult(i, 0);
|
||||
}
|
||||
|
||||
public void onActivityResult(int requestCode, int resultCode, Intent data)
|
||||
{
|
||||
hostcallback.onComplete(resultCode, data);
|
||||
hostcallback = null;
|
||||
hostcallback.onComplete(resultCode, data);
|
||||
hostcallback = null;
|
||||
}
|
||||
|
||||
private void LOG(CharSequence text)
|
||||
|
|
|
@ -22,48 +22,43 @@
|
|||
package org.rockbox;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Intent;
|
||||
import android.util.Log;
|
||||
|
||||
public class RockboxKeyboardInput
|
||||
{
|
||||
private BroadcastReceiver b;
|
||||
private String result;
|
||||
|
||||
public RockboxKeyboardInput()
|
||||
{
|
||||
result = null;
|
||||
result = null;
|
||||
}
|
||||
|
||||
public void kbd_input(String text)
|
||||
{
|
||||
RockboxActivity a = (RockboxActivity) RockboxService.get_instance().get_activity();
|
||||
Intent kbd = new Intent(a, KeyboardActivity.class);
|
||||
kbd.putExtra("value", text);
|
||||
a.waitForActivity(kbd, new HostCallback(){
|
||||
|
||||
@Override
|
||||
public void onComplete(int resultCode, Intent data) {
|
||||
if (resultCode == Activity.RESULT_OK)
|
||||
{
|
||||
result = data.getStringExtra("value");
|
||||
}
|
||||
else {
|
||||
result = "";
|
||||
}
|
||||
}
|
||||
});
|
||||
RockboxActivity a = (RockboxActivity) RockboxService.get_instance().get_activity();
|
||||
Intent kbd = new Intent(a, KeyboardActivity.class);
|
||||
kbd.putExtra("value", text);
|
||||
a.waitForActivity(kbd, new HostCallback()
|
||||
{
|
||||
public void onComplete(int resultCode, Intent data)
|
||||
{
|
||||
if (resultCode == Activity.RESULT_OK)
|
||||
{
|
||||
result = data.getStringExtra("value");
|
||||
}
|
||||
else {
|
||||
result = "";
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
public String get_result()
|
||||
public String get_result()
|
||||
{
|
||||
return result;
|
||||
return result;
|
||||
}
|
||||
|
||||
public boolean is_usable()
|
||||
{
|
||||
return RockboxService.get_instance().get_activity() != null;
|
||||
}
|
||||
|
||||
|
||||
public boolean is_usable()
|
||||
{
|
||||
return RockboxService.get_instance().get_activity() != null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue