Estoy usando Eclipse para el desarrollo de Android y ya he configurado mi estilo de formato de código pero todavía tengo los métodos anónimos que no pude encontrar para formatear en Eclipse . Así es como Eclipse forma métodos anónimos ahora:Cómo configurar Code Formatter for Java Métodos anónimos en Eclipse
// The BroadcastReceiver that listens for discovered devices and
// changes the title when discovery is finished
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Utils.Log.i("BLUETOOTH: " + action);
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
// Get the
// BluetoothDevice
// object from the
// Intent
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// If it's already
// paired, skip it,
// because it's been
// listed already
if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
if (mNewDevicesArrayAdapter.getCount() == 0) {
mNewDevicesArrayAdapter.add(device);
}
btDevicesUpdateList.add(device);
}
}
else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
mNewDevicesArrayAdapter.setItems(btDevicesUpdateList);
mNewDevicesArrayAdapter.notifyDataSetChanged();
btDevicesUpdateList.clear();
mBtAdapter.startDiscovery();
}
else if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
if (mBtAdapter.getState() == BluetoothAdapter.STATE_ON) {
switchToView(viewBluetoothOn);
firstTimeDiscover();
}
else if (mBtAdapter.getState() == BluetoothAdapter.STATE_OFF) {
switchToView(viewBluetoothOff);
}
}
}
};
Ver? Es muy malo. ¿Cuál es la configuración correcta para formatear la declaración del método anónimo para que permanezca en el lado izquierdo y no entre en el carácter igual a =
?
Por favor, publique contenido de sus .settings/org.eclipse.jdt.core.prefs –
pasé unos buenos cinco minutos limpiando ese terrible formato, sólo para darse cuenta que la pregunta es sobre * * terribles dicho formato. **** headdesk **** –
@EugeneKuleshov que es la configuración específica del proyecto. – papaiatis