IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

API standards et tierces Android Discussion :

Bluetooth


Sujet :

API standards et tierces Android

  1. #1
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 384
    Points
    384
    Par défaut Bluetooth
    Bonjour
    je suis entraine de developper une application pour faire transfer des files sur bluetooth en plus precise de jour la game XO en Bluetooth,
    j'ai effecute la partie du code du Bluetooth come le discovery et le pairing , et j'arrive pas a comprendre comment peut on mettre le code du socket pour faire envoyer un file au autre joueur .
    j'ai vu le code ici et le class
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    ServeurBluetooth extends Thread
    et
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    ClientBluetooth extends Thread
    comment peut on prendre un instance du ces 2 classes ?
    dans quel partie du code mettons le ?

    mon code du BT est le suivante

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
     
    package com.example.bluetoothdemo;
     
    import java.io.File;
    import java.io.IOException;
    import java.lang.reflect.Method;
    import java.util.ArrayList;
    import java.util.Set;
    import java.util.UUID;
     
     
    import android.R.bool;
    import android.app.Activity;
    import android.bluetooth.BluetoothAdapter;
    import android.bluetooth.BluetoothClass;
    import android.bluetooth.BluetoothDevice;
    import android.bluetooth.BluetoothServerSocket;
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.content.IntentFilter;
    import android.net.Uri;
    import android.os.Bundle;
    import android.os.Handler;
    import android.os.Message;
    import android.os.ParcelUuid;
    import android.util.Log;
    import android.view.Menu;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.AdapterView;
    import android.widget.ArrayAdapter;
    import android.widget.Button;
    import android.widget.ListView;
    import android.widget.Toast;
    import android.widget.AdapterView.OnItemClickListener;
     
    public class MainActivity extends Activity {
    	/** Called when the activity is first created. */
        ListView listViewPaired;
        ListView listViewDetected;
        ArrayList<String> arrayListpaired;
        Button buttonSearch,buttonOn,buttonDesc,buttonOff,btnsndfile;
        ArrayAdapter<String> adapter,detectedAdapter;
        static HandleSeacrh handleSeacrh;
        BluetoothDevice bdDevice;
        BluetoothClass bdClass;
        ArrayList<BluetoothDevice> arrayListPairedBluetoothDevices;
        private ButtonClicked clicked;
        ListItemClickedonPaired listItemClickedonPaired;
        BluetoothAdapter bluetoothAdapter = null;
        ArrayList<BluetoothDevice> arrayListBluetoothDevices = null;
        ListItemClicked listItemClicked;
     
     
        public static final UUID MY_UUID = UUID.fromString("73f5d570-99b4-11e2-9e96-0800200c9a66");
     
     
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_main);
     
    		    listViewDetected = (ListView) findViewById(R.id.listViewDetected);
    	        listViewPaired = (ListView) findViewById(R.id.listViewPaired);
    	        buttonSearch = (Button) findViewById(R.id.buttonSearch);
    	        buttonOn = (Button) findViewById(R.id.buttonOn);
    	        buttonDesc = (Button) findViewById(R.id.buttonDesc);
    	        buttonOff = (Button) findViewById(R.id.buttonOff); 
    	        btnsndfile=(Button)findViewById(R.id.button1);
     
    	        arrayListpaired = new ArrayList<String>();
    	        bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    	        clicked = new ButtonClicked();
    	        handleSeacrh = new HandleSeacrh();
    	        arrayListPairedBluetoothDevices = new ArrayList<BluetoothDevice>();
    	        /*
    	         * the above declaration is just for getting the paired bluetooth devices;
    	         * this helps in the removing the bond between paired devices.
    	         */
    	        listItemClickedonPaired = new ListItemClickedonPaired();
    	        arrayListBluetoothDevices = new ArrayList<BluetoothDevice>();
    	        adapter= new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, arrayListpaired);
    	        detectedAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_single_choice);
    	        listViewDetected.setAdapter(detectedAdapter);
    	        listItemClicked = new ListItemClicked();
    	        detectedAdapter.notifyDataSetChanged();
    	        listViewPaired.setAdapter(adapter);
    	        btnsndfile.setOnClickListener(new View.OnClickListener() {
     
    				@Override
    				public void onClick(View v) {
     
     
     
     
     
    				}
    			});
    	}
     
    	@Override
    	public boolean onCreateOptionsMenu(Menu menu) {
    		// Inflate the menu; this adds items to the action bar if it is present.
    		getMenuInflater().inflate(R.menu.main, menu);
    		return true;
    	}
     
     
     
     
     
     
        @Override
        protected void onStart() {
            // TODO Auto-generated method stub
            super.onStart();
            getPairedDevices();
            buttonOn.setOnClickListener(clicked);
            buttonSearch.setOnClickListener(clicked);
            buttonDesc.setOnClickListener(clicked);
            buttonOff.setOnClickListener(clicked);
            listViewDetected.setOnItemClickListener(listItemClicked);
            listViewPaired.setOnItemClickListener(listItemClickedonPaired);
        }
        private void getPairedDevices() {
            Set<BluetoothDevice> pairedDevice = bluetoothAdapter.getBondedDevices();            
            if(pairedDevice.size()>0)
            {
                for(BluetoothDevice device : pairedDevice)
                {
                    arrayListpaired.add(device.getName()+"\n"+device.getAddress());
                    arrayListPairedBluetoothDevices.add(device);
                }
            }
            adapter.notifyDataSetChanged();
        }
        class ListItemClicked implements OnItemClickListener
        {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                // TODO Auto-generated method stub
                bdDevice = arrayListBluetoothDevices.get(position);
                //bdClass = arrayListBluetoothDevices.get(position);
                Log.i("Log", "The dvice : "+bdDevice.toString());
                /*
                 * here below we can do pairing without calling the callthread(), we can directly call the
                 * connect(). but for the safer side we must usethe threading object.
                 */
                //callThread();
                //connect(bdDevice);
                Boolean isBonded = false;
                try {
                    isBonded = createBond(bdDevice);
                    if(isBonded)
                    {
                        //arrayListpaired.add(bdDevice.getName()+"\n"+bdDevice.getAddress());
                        //adapter.notifyDataSetChanged();
                        getPairedDevices();
                        adapter.notifyDataSetChanged();
                    }
                } 
                catch (Exception e) {
                    e.printStackTrace(); 
                }
                //connect(bdDevice);
                Log.i("Log", "The bond is created: "+isBonded);
            }       
        }
        class ListItemClickedonPaired implements OnItemClickListener
        {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position,long id) {
                bdDevice = arrayListPairedBluetoothDevices.get(position);
                try {
                    Boolean removeBonding = removeBond(bdDevice);
                    if(removeBonding)
                    {
                        arrayListpaired.remove(position);
                        adapter.notifyDataSetChanged();
                    }
     
     
                    Log.i("Log", "Removed"+removeBonding);
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
        /*private void callThread() {
            new Thread(){
                public void run() {
                    Boolean isBonded = false;
                    try {
                        isBonded = createBond(bdDevice);
                        if(isBonded)
                        {
                            arrayListpaired.add(bdDevice.getName()+"\n"+bdDevice.getAddress());
                            adapter.notifyDataSetChanged();
                        }
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace(); 
                    }//connect(bdDevice);
                    Log.i("Log", "The bond is created: "+isBonded);
                }           
            }.start();
        }*/
        private Boolean connect(BluetoothDevice bdDevice) { 
            Boolean bool = false;
            try {
                Log.i("Log", "service metohd is called ");
                Class cl = Class.forName("android.bluetooth.BluetoothDevice");
                Class[] par = {};
                Method method = cl.getMethod("createBond", par);
                Object[] args = {};
                bool = (Boolean) method.invoke(bdDevice);//, args);// this invoke creates the detected devices paired.
                //Log.i("Log", "This is: "+bool.booleanValue());
                //Log.i("Log", "devicesss: "+bdDevice.getName());
            } catch (Exception e) {
                Log.i("Log", "Inside catch of serviceFromDevice Method");
                e.printStackTrace();
            }
            return bool.booleanValue();
        };
     
     
        public boolean removeBond(BluetoothDevice btDevice)  
        throws Exception  
        {  
            Class btClass = Class.forName("android.bluetooth.BluetoothDevice");
            Method removeBondMethod = btClass.getMethod("removeBond");  
            Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);  
            return returnValue.booleanValue();  
        }
     
     
        public boolean createBond(BluetoothDevice btDevice)  
        throws Exception  
        { 
            Class class1 = Class.forName("android.bluetooth.BluetoothDevice");
            Method createBondMethod = class1.getMethod("createBond");  
            Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);  
            return returnValue.booleanValue();  
        }  
     
     
        class ButtonClicked implements OnClickListener
        {
            @Override
            public void onClick(View view) {
                switch (view.getId()) {
                case R.id.buttonOn:
                    onBluetooth();
                    break;
                case R.id.buttonSearch:
                    arrayListBluetoothDevices.clear();
                    startSearching();
                    break;
                case R.id.buttonDesc:
                    makeDiscoverable();
                    break;
                case R.id.buttonOff:
                    offBluetooth();
                    break;
                default:
                    break;
                }
            }
        }
        private BroadcastReceiver myReceiver = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                Message msg = Message.obtain();
                String action = intent.getAction();
                if(BluetoothDevice.ACTION_FOUND.equals(action)){
                    Toast.makeText(context, "ACTION_FOUND", Toast.LENGTH_SHORT).show();
     
                    BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                    try
                    {
                        //device.getClass().getMethod("setPairingConfirmation", boolean.class).invoke(device, true);
                        //device.getClass().getMethod("cancelPairingUserInput", boolean.class).invoke(device);
                    }
                    catch (Exception e) {
                        Log.i("Log", "Inside the exception: ");
                        e.printStackTrace();
                    }
     
                    if(arrayListBluetoothDevices.size()<1) // this checks if the size of bluetooth device is 0,then add the
                    {                                           // device to the arraylist.
                        detectedAdapter.add(device.getName()+"\n"+device.getAddress());
                        arrayListBluetoothDevices.add(device);
                        detectedAdapter.notifyDataSetChanged();
                    }
                    else
                    {
                        boolean flag = true;    // flag to indicate that particular device is already in the arlist or not
                        for(int i = 0; i<arrayListBluetoothDevices.size();i++)
                        {
                            if(device.getAddress().equals(arrayListBluetoothDevices.get(i).getAddress()))
                            {
                                flag = false;
                            }
                        }
                        if(flag == true)
                        {
                            detectedAdapter.add(device.getName()+"\n"+device.getAddress());
                            arrayListBluetoothDevices.add(device);
                            detectedAdapter.notifyDataSetChanged();
                        }
                    }
                }           
            }
        };
        private void startSearching() {
            Log.i("Log", "in the start searching method");
            IntentFilter intentFilter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
            this.registerReceiver(myReceiver, intentFilter);
            bluetoothAdapter.startDiscovery();
        }
        private void onBluetooth() {
            if(!bluetoothAdapter.isEnabled())
            {
                bluetoothAdapter.enable();
                Log.i("Log", "Bluetooth is Enabled");
            }
        }
        private void offBluetooth() {
            if(bluetoothAdapter.isEnabled())
            {
                bluetoothAdapter.disable();
            }
        }
        private void makeDiscoverable() {
            Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
            discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 0);//0 for visible all time
            startActivity(discoverableIntent);
     
            Log.i("Log", "Discoverable ");
        }
        class HandleSeacrh extends Handler
        {
            @Override
            public void handleMessage(Message msg) {
                switch (msg.what) {
                case 111:
     
                    break;
     
                default:
                    break;
                }
            }
        }
     
    }
    je vous remercie par avance

  2. #2
    Expert éminent

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Points : 9 149
    Points
    9 149
    Par défaut
    Bonjour,

    Tu as un très bon exemple dans les samples de la SDK

    BlueToothChat de mémoire, cela te montrera comment échanger des données.
    Par contre pas d'échanges de fichier (trop gros), donc il te faudra envoyer le contenu (paquet par paquet) des fichiers pour le reconstruire côté client.
    Responsable Android de Developpez.com (Twitter et Facebook)
    Besoin d"un article/tutoriel/cours sur Android, consulter la page cours
    N'hésitez pas à consulter la FAQ Android et à poser vos questions sur les forums d'entraide mobile d'Android.

  3. #3
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 384
    Points
    384
    Par défaut
    Bonjour

    je voudrai utiliser le bluetooth pour echanger seulement 2 nombres qui sont les coordonees (X,Y) du la mis en place du X/O du joueur.
    il faut creer ces 2 classes comme 2 fichiers independante du la partie du code MainActivity ? ou ces 2 classes doit etre implementer dans la meme partie du code MainActivity?
    Il faudrait utliser la variable blueAdapter dans la classe socket partie serveur et n'est pas defenie dans cette classe.

    Merci par avance

Discussions similaires

  1. [Delphi 3] Bluetooth avec Tapdcomport
    Par woow dans le forum Composants VCL
    Réponses: 4
    Dernier message: 29/05/2019, 23h01
  2. Gestion Bluetooth
    Par cfdev dans le forum C++Builder
    Réponses: 3
    Dernier message: 26/09/2005, 13h57
  3. [Info] Bluetooth
    Par BillyKimber dans le forum Entrée/Sortie
    Réponses: 2
    Dernier message: 30/08/2005, 12h53
  4. Programmation du port Infrarouge et du Bluetooth
    Par nabil_abada dans le forum Java ME
    Réponses: 3
    Dernier message: 12/08/2005, 09h33
  5. Appli Bluetooth
    Par Ferllings dans le forum C++
    Réponses: 2
    Dernier message: 15/03/2005, 13h16

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo