Bluetoothを使用して、1つのAndroidデバイスから別のAndroidデバイスに画像/ txtまたは任意のファイルを送信するアプリケーションを開発したい。
誰かがそのための助けやソースコードを与えることができますか?
Androidデバイスから任意のデバイスへのbluetooth経由でファイルを送信できるコードは次のとおりです。
btnOk.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
txtContent = (EditText)findViewById(R.id.txtContent);
imageView = (ImageView)findViewById(R.id.imageView);
linearLayout = (LinearLayout)findViewById(R.id.linearLayout);
viewToBeConverted = (TextView) findViewById(R.id.hello);
linearLayout.setDrawingCacheEnabled(true);
//Toast.makeText(MainActivity.this, file.toString(), Toast.LENGTH_LONG).show();
try
{
if(file.exists())
{
file.delete();
}
out = new FileOutputStream(file);
}
catch (Exception e)
{
Toast.makeText(MainActivity.this, e.getMessage(), Toast.LENGTH_LONG).show();
}
viewToBeConverted.setText(txtContent.getText().toString());
viewToBeConverted.setDrawingCacheEnabled(true);
// Toast.makeText(MainActivity.this, " " + viewToBeConverted.getDrawingCache(), Toast.LENGTH_LONG).show();
txtContent.setText("");
Bitmap viewBitmap = linearLayout.getDrawingCache();
linearLayout.setVisibility(1);
imageView.setImageBitmap(viewBitmap);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
viewBitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object
byte[] b = baos.toByteArray();
try
{
out.write(b);
out.flush();
out.close();
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file) );
startActivity(intent);
}
catch (Exception e)
{
Toast.makeText(MainActivity.this, " " + e.getMessage(), Toast.LENGTH_LONG).show();
}
}
});
楽しい。 :)
このアプリケーションでは、2つのAndroidデバイスがBluetoothを介して双方向のテキストチャットを実行できます。次のような基本的なBluetooth API機能をすべて示します:
http://developer.Android.com/resources/samples/BluetoothChat/index.html