For NetBeans to really understand that you don't want spellchecker, do the following:
"El primer paso para llegar a cualquier parte es decidir que no te vas a quedar donde estás.... da tu primer paso hoy no importa que no veas el camino......"
sábado, 11 de julio de 2015
Como Deshabilitar el Spell Checker in Netbeans
For NetBeans to really understand that you don't want spellchecker, do the following:
Go toTools -> Plugins -> Installed tab -> select the spellchecker plugin -> press Deactivate -> restart NetBeans
viernes, 10 de julio de 2015
miércoles, 4 de marzo de 2015
Como cargar una imagen de Internet en un ImageView desde android
Para cargar una imagen desde Internet no lo puedes hacer desde el hilo principal de tu actividad tienes que crear una clase nueva que extienda de AsyncTask
Desde el hilo principal llamas a
new DownloadImageTask((ImageView) findViewById(R.id.imageView1)).execute("http://url/imagenDeseada.png");Clase que se encarga de ejecutar la descarga en segundo plano
private class DownloadImageTask extends AsyncTask { ImageView bmImage; public DownloadImageTask(ImageView bmImage) { this.bmImage = bmImage; } protected Bitmap doInBackground(String... urls) { String urldisplay = urls[0]; Bitmap mIcon11 = null; try { InputStream in = new java.net.URL(urldisplay).openStream(); mIcon11 = BitmapFactory.decodeStream(in); } catch (Exception e) { Log.e("Error", e.getMessage()); e.printStackTrace(); } return mIcon11; } protected void onPostExecute(Bitmap result) { bmImage.setImageBitmap(result); } }tambien hay que verificar que tengan los permisos necesarios en el AndroidMainfest
Pasar Imágenes entre actividades - Android
Buscando por Internet encontré la mejor solución para pasar imágenes de un ImageView a otro de otra actividad
Actividad 1
ImageView foto = (ImageView) view.findViewById(R.id.imgWeather); Bitmap bitmap = ((BitmapDrawable)foto.getDrawable()).getBitmap(); Intent intent = new Intent(CiudadesActivity.this, DetalleCiudadActivity.class); intent.putExtra("bitMap",bitmap); startActivity(intent);
Actividad 2
Intent intent = getIntent(); Bitmap bitmap = intent.getParcelableExtra("bitMap"); ImageView icono = (ImageView) findViewById(R.id.imgWeather); icono.setImageBitmap(bitmap);
martes, 3 de marzo de 2015
Tips para programar en Android
Metodos para cargar imagenes dinamicamente de una lista
ImageView imgIcono = (ImageView) item.findViewById(R.id.imgWeather); int res_imagen = context.getResources().getIdentifier("drawable/" + datos.get(position).getDrawableImageID(), null, context.getPackageName()); imgIcono.setImageResource(res_imagen);
Suscribirse a:
Entradas (Atom)