我已经按照教程创建了一个带有imageview的图库。我想要做的就是将图库放在底部,将imageview放在它上面,但是当我在XML中切换它时,它会给我一个ClassCastException。
这是XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/backrepeat"
android:orientation="vertical" >
<ImageView
android:id="@+id/ImageView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
这是非工作版本,但将图库放置在imageview上方。
来自日志:
01-26 22:20:13.673: E/AndroidRuntime(349): Caused by: java.lang.ClassCastException: android.widget.ImageView
01-26 22:20:13.673: E/AndroidRuntime(349): at com.appinfluence.fanapp.v1.Photos.onCreate(Photos.java:36)
的onCreate:
Gallery gallery = (Gallery) findViewById(R.id.gallery);
gallery.setAdapter(new ImageAdapter(Photos.this));
imgView = (ImageView)findViewById(R.id.ImageView01);
imgView.setImageResource(mImageIds[0]);
gallery.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView parent, View v, int position, long id) {
imgView.setImageResource(mImageIds[position]);
}
});
}
其他有用的代码:
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView = new ImageView(mContext);
imageView.setImageResource(mImageIds[position]);
imageView.setLayoutParams(new Gallery.LayoutParams(150, 100));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setBackgroundResource(mGalleryItemBackground);
return imageView;
}
答案 0 :(得分:0)
无需在布局中使用单独的ImageView
,图库将显示图片。删除ImageView
并检查它..
修改强>
只需清理项目。 (正如yugandhar所说。)
答案 1 :(得分:0)
嘿NickNelson刚才我找到了你的问题的解决方案,只需清理它将起作用的项目。
示例截图
答案 2 :(得分:0)
请尝试使用此XML作为布局部分:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical">
<ImageView android:layout_alignParentTop="true"
android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/antartica1"/>
<Gallery
android:id="@+id/Gallery01"
android:layout_width="fill_parent"
android:layout_height="150dp"
android:layout_alignParentBottom="true" />
</RelativeLayout>