HomeSort by relevance Sort by last modified time
    Searched refs:TOAST (Results 1 - 12 of 12) sorted by null

  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
Constants.java 33 public static final String TOAST = "toast";
BluetoothChatService.java 262 bundle.putString(Constants.TOAST, "Unable to connect device");
277 bundle.putString(Constants.TOAST, "Device connection was lost");
BluetoothChatFragment.java 43 import android.widget.Toast;
99 Toast.makeText(activity, "Bluetooth is not available", Toast.LENGTH_LONG).show();
210 Toast.makeText(getActivity(), R.string.not_connected, Toast.LENGTH_SHORT).show();
314 Toast.makeText(activity, "Connected to "
315 + mConnectedDeviceName, Toast.LENGTH_SHORT).show();
320 Toast.makeText(activity, msg.getData().getString(Constants.TOAST),
321 Toast.LENGTH_SHORT).show()
    [all...]
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
Constants.java 33 public static final String TOAST = "toast";
BluetoothChatService.java 262 bundle.putString(Constants.TOAST, "Unable to connect device");
277 bundle.putString(Constants.TOAST, "Device connection was lost");
BluetoothChatFragment.java 43 import android.widget.Toast;
99 Toast.makeText(activity, "Bluetooth is not available", Toast.LENGTH_LONG).show();
210 Toast.makeText(getActivity(), R.string.not_connected, Toast.LENGTH_SHORT).show();
314 Toast.makeText(activity, "Connected to "
315 + mConnectedDeviceName, Toast.LENGTH_SHORT).show();
320 Toast.makeText(activity, msg.getData().getString(Constants.TOAST),
321 Toast.LENGTH_SHORT).show()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 50 public static final String TOAST = "toast";
251 bundle.putString(TOAST, "Unable to connect device");
263 bundle.putString(TOAST, "Device connection was lost");
ConnectionAccessClientActivity.java 34 import android.widget.Toast;
143 Toast.makeText(this, R.string.bt_connecting, Toast.LENGTH_SHORT).show();
148 Toast.makeText(this, R.string.bt_connected, Toast.LENGTH_SHORT).show();
162 String toast = msg.getData().getString(BluetoothChatService.TOAST); local
163 Toast.makeText(this, toast, Toast.LENGTH_SHORT).show()
    [all...]
ConnectionAccessServerActivity.java 38 import android.widget.Toast;
143 Toast.makeText(this, R.string.bt_listening, Toast.LENGTH_SHORT).show();
149 String toast = msg.getData().getString(BluetoothChatService.TOAST); local
150 Toast.makeText(this, toast, Toast.LENGTH_LONG).show();
MessageTestActivity.java 41 import android.widget.Toast;
318 String toast = msg.getData().getString(BluetoothChatService.TOAST); local
319 Toast.makeText(this, toast, Toast.LENGTH_LONG).show();
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 41 import android.widget.Toast;
60 public static final String TOAST = "toast";
97 Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
203 Toast.makeText(this, R.string.not_connected, Toast.LENGTH_SHORT).show();
279 Toast.makeText(getApplicationContext(), "Connected to "
280 + mConnectedDeviceName, Toast.LENGTH_SHORT).show();
283 Toast.makeText(getApplicationContext(), msg.getData().getString(TOAST)
    [all...]
BluetoothChatService.java 237 bundle.putString(BluetoothChat.TOAST, "Unable to connect device");
252 bundle.putString(BluetoothChat.TOAST, "Device connection was lost");

Completed in 114 milliseconds