Переключение между Галереей и LinearLayout - ClassCastException - PullRequest
0 голосов
/ 15 апреля 2011

Спасибо за чтение!

Я создаю собственное приложение «Галерея», где первая миниатюра представляет собой обложку альбома, отображающую детали альбома. Вот поток:


getView() {
//inflate cover.xml which includes two textviews and an imageview.
    if(position == 0)
         //set some album-specific text
    else 
         //set image-specific text
}

Вот фактический код getView ():


 public View getView(int position, View convertView, ViewGroup parent) {
            //TODO: Recycle view
            convertView = mInflater.inflate(R.layout.cover, null);
            TextView tvTxt1 = (TextView)convertView.findViewById(R.cover.tvCoverText1);
            TextView tvTxt2 = (TextView)convertView.findViewById(R.cover.tvCoverText2);
            //ImageView imgView = (ImageView)convertView.findViewById(R.cover.imgImage);

            if(position == 0) {
                tvTxt1.setText("AlbumText1");
                tvTxt2.setText("AlbumText2");
                return convertView;
            }
            else {
                tvTxt1.setText("ImageText1"); 
                tvTxt2.setText("ImageText2");
                ImageView imgView = new ImageView(mContext);
                imgView.setImageResource(mImageIds[position]);
                imgView.setLayoutParams(new Gallery.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
                imgView.setScaleType(ImageView.ScaleType.FIT_XY);
                imgView.setBackgroundResource(mGalleryItemBackground);
                return imgView;
                //return convertView;
            }
        }

cover.xml содержит ImageView и два TextView с.

когда я возвращаю convertView в блоке else, я получаю ClassCastException. Я, конечно, делаю что-то не так.

Я потратил на это почти два дня :(

Пожалуйста, помогите!

Ответы [ 3 ]

0 голосов
/ 15 апреля 2011

Добавьте это изображение в ваш макет XML, а затем получите его из convertview и в конце верните представление конвертации.Это может решить проблему.Я много работал над виджетом Галерея, если есть еще проблемы, дайте мне знать.

0 голосов
/ 20 апреля 2011

Перепробовав все предложения полезных людей, я так и не смог пройти через ClassCastException.

Итак, в качестве обходного пути - я вроде «наложил» Gallery на другие представления, которые я хотел включить / отключить.

Это обходной путь, поэтому, если кто-то придумает лучший ответ - опубликуйте его здесь, чтобы я мог принять его.

Итак, вот что сработало для меня:

public View getView(int position, View convertView, ViewGroup parent) {
            //TODO: Recycle view
            //onvertView = mInflater.inflate(R.layout.cover, null);
            //ImageView imgView = (ImageView)convertView.findViewById(R.cover.imgImage);
            ImageView imgView = new ImageView(mContext);
            imgView.setImageResource(mImageIds[position]);
            imgView.setLayoutParams(new Gallery.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
            imgView.setScaleType(ImageView.ScaleType.FIT_XY);
            imgView.setBackgroundResource(mGalleryItemBackground);

            if(position == 0) {
                tvText1.setText("AlbumText1");
                tvText2.setText("AlbumText2");
                tvText3.setVisibility(View.VISIBLE);
                bottomBar.setVisibility(View.VISIBLE);
            }
            else {
                tvText1.setText("ImageText1"); 
                tvText2.setText("ImageText2");
                tvText3.setVisibility(View.GONE);
                bottomBar.setVisibility(View.GONE);
            }
            return imgView;
        }

Вот мой макет main.xml file:


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <Gallery android:id="@+main/gallery" android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
    <!-- <ImageView android:id="@+main/imgImage" -->
    <!-- android:layout_width="fill_parent" android:layout_height="fill_parent" -->
    <!-- android:adjustViewBounds="true"> -->
    <!-- </ImageView> -->
    <TextView android:id="@+main/tvText2" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:singleLine="true"
        android:maxLines="1" android:text="Text2"
        android:layout_alignParentBottom="true" />
    <TextView android:id="@+main/tvText1" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:maxLines="2"
        android:text="Text1" android:layout_above="@main/tvText2" />
        <RelativeLayout android:id="@+main/bottomBar" android:layout_alignParentBottom="true"
            android:layout_width="fill_parent" android:layout_height="40dip"
            android:background="#A3A1A1">
            <TextView android:id="@+main/tvBottomText" android:layout_height="wrap_content" android:layout_width="fill_parent" 
                android:text="BottomBarText"/>
        </RelativeLayout>
</RelativeLayout>

Остальная часть кода в Main.java (чей getView метод, который я изменил) почти дословна с здесь

Еще раз спасибо за помощь!

0 голосов
/ 15 апреля 2011

Вот как это выглядит для меня. Когда position == 0, вы возвращаете convertView, который является View. Когда вы возвращаете «else», вы возвращаете ImageView. Ваш метод настроен на возврат View. Попробуйте привести ваш ImageView к представлению перед его возвратом.

Попробуйте: return (Просмотреть) imgView;

Хотя сам никогда не пробовал ...

...