我是android域的新手。
我的问题是..我在图像视图中有一个空白空间。我从数据库中检索图像作为字符串并存储在数组中并显示。当我在字符串中得到 null 时,我不应该得到一个空白空间。
如何清除这个?任何人帮助我..提前非常感谢...
我试试这样...
String pic = imgarr.get(g); System.out.println("picture:"+pic); if (pic != null && !pic.equals("")) { ImageView ImageView = (ImageView) findViewById(R.id.image); ImageView.setVisibility(View.GONE); }else{ try { ImageView im = (ImageView)findViewById(R.id.image); Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL("http://11.0.0.2/htss/kumar/image/"+pic).getContent()); im.setImageBitmap(bitmap); } catch (MalformedURLException e) { e.printStackTrace(); } }
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" tools:context=".Quesans" > <ScrollView android:layout_width="fill_parent" android:layout_height="3500dip" android:scrollbars="vertical" <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"> <RadioGroup android:id="@+id/rdgroup" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/que_txt" android:layout_marginTop="300dp" android:orientation="vertical" > <RadioButton android:id="@+id/RB1" android:text=""/> <RadioButton android:id="@+id/RB2" android:text=""/> <RadioButton android:id="@+id/RB3" android:text=""/> <RadioButton android:id="@+id/RB4" android:text=""/> </RadioGroup> <ImageView android:id="@+id/nxt_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_below="@+id/rdtxt" android:layout_marginRight="22dp" android:layout_marginTop="30dp" android:src="@drawable/next_normal" /> <TextView android:id="@+id/rdtxt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/rdgroup" android:layout_marginTop="17dp" android:text="Nothing is picked" android:textColor="#0000FF"/> <ImageView android:id="@+id/focusarea" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignRight="@+id/nxt_btn" android:layout_below="@+id/nxt_btn" android:layout_marginRight="1dp" android:layout_marginTop="10dp" android:src="@drawable/focus_normal" /> <TextView android:id="@+id/que_txt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginLeft="10dp" android:layout_marginTop="25dp" android:text="TextView" /> <ImageView android:id="@+id/app" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentBottom="true" android:layout_marginLeft="140dp" android:layout_marginBottom="0dp" android:src="@drawable/newapps" /> <ImageView android:id="@+id/image" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/que_txt" android:layout_below="@+id/que_txt" android:layout_marginTop="150dp" /> <TextView android:id="@+id/soltxt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/prv_btn" android:layout_alignTop="@+id/focusarea" android:layout_marginLeft="23dp" android:text="" /> <ImageView android:id="@+id/prv_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/image" android:layout_alignTop="@+id/nxt_btn" android:src="@drawable/previous_normal" /> </RelativeLayout> </ScrollView> </RelativeLayout>