我有一个 ListView,直到今天我已经定位了两个视图:一个 ImageView 位于其父级的左侧,然后我使用一个位于此 ImageView 右侧的 TextView。在 xml 中,我使用以下代码来执行此操作:
android:layout_toRightOf="@+id/single",其中 single 是一个 ImageView。
...所以没有任何问题:-)
但是今天我想出了一个新的想法——我想要这个 ListView 中的另一个 ImageView。我将这个新视图放置在其父视图 (ListView) 的右侧。
android:layout_alignParentRight="true"
现在,当我这样做时出现了一个小问题:如果我在 TextView 中有一个长句子,它会与这个新的 ImageView 重叠。但是根据android文档我发现了这段代码:
android:layout_toStartOf="@+id/volume",其中volume是新ImageView的id。
我真的认为它会起作用。to the end of means 将此视图的结束边缘定位到给定锚视图 ID 的开头。[参考]
所以我认为一切都会奏效,但是当我编译并开始测试应用程序时,当我单击列表视图时,我的应用程序崩溃了。崩溃是由于 classcastexception 造成的。ImageView 无法转换为 TextView
所以我的问题是为什么我会得到这个 ClassCastException?我唯一要做的就是将 TextView 的结束边缘定位到 ImageView 的开始。为什么我在使用 toStartOf 时会收到classcastException?当我使用 xml 代码android:layout_toRightOf="@+id/single"将 TextView 放置在另一个 ImageView 的右侧时,我没有遇到异常
总之:我的目标是在这个 ListView 中拥有三个视图:两个 ImageView - 一个在左侧,一个在右侧。在这两个 ImageView 之间,我想放置 TextView。
我在 getChildView 方法中得到了异常。
<!-- Layout för undermenyerna -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="5dp"
android:paddingLeft="0px"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="0px"
android:background="#ffffff"
tools:context=".PhraseActivity" >
<!-- view för ena ena könet, man eller kvinna -->
<TextView
android:id="@+id/label_single"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_toRightOf="@+id/single"
android:layout_toStartOf="@+id/volume"
android:la
/>
<!-- texview för båda könen, man och kvinna -->
<TextView
android:id="@+id/label_couple"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_toRightOf="@+id/couple"
/>
<!-- texview för extra info -->
<TextView
android:id="@+id/extra_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/couple"
android:layout_marginTop="10sp"
android:background="@drawable/back_extrainfo"
android:padding="5sp"
android:visibility="gone"
android:textColor="#8c8c8c"
/>
<!-- text länk till bild, tex karta som visar vart staden är i Thailand -->
<TextView
android:id="@+id/imagelink"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:focusableInTouchMode="true"
android:text="Click to view on map"
android:textColor="#3241d3"
android:layout_centerHorizontal="true"
android:layout_below="@+id/couple"
/>
<!-- text länk till bild, samma syfte som texviewen ovan -->
<TextView
android:id="@+id/imagelink2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:text="Click to view image"
android:focusableInTouchMode="true"
android:textColor="#3241d3"
android:layout_centerHorizontal="true"
android:layout_below="@+id/extra_info"
/>
<!-- view för en bild av ena könet, man eller kvinna -->
<ImageView
android:id="@+id/single"
android:layout_width="68sp"
android:layout_height="68sp"
/>
<!-- view för en bild av båda könen, man och kvinna -->
<ImageView
android:id="@+id/couple"
android:layout_width="100sp"
android:layout_height="68sp"
/>
<ImageView
android:id="@+id/volume"
android:layout_width="100sp"
android:layout_height="79sp"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
final ViewHolder holder;
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.activity_subphrase, parent, false);
holder = new ViewHolder();
holder.text = (TextView) convertView.findViewById(R.id.label_single);
holder.text2 = (TextView) convertView.findViewById(R.id.label_couple);
holder.imageView = (ImageView) convertView.findViewById(R.id.single);
holder.imageView2 = (ImageView) convertView.findViewById(R.id.couple);
holder.volumeControl = (ImageView) convertView.findViewById(R.id.volume);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
final int nChildren = getChildrenCount(groupPosition);
final View v = convertView;
switch (nChildren) {
case 1:
holder.imageView.setBackgroundResource(0);
holder.imageView2.bringToFront();
holder.imageView2.setVisibility(ImageView.VISIBLE);
holder.text.setText(null);
holder.text2.setText(contents[groupPosition][childPosition]);
holder.imageView2.setBackgroundResource(R.drawable.man_woman_3);
//extra(groupPosition, category, holder.text, convertView, parent);
showThaiImages(groupPosition, holder.text, convertView, parent);
// Väntar till all layout är avklarad - efter detta bearbetas animering.
vto = convertView.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
public void onGlobalLayout() {
v.getViewTreeObserver().removeOnGlobalLayoutListener(this); //vet inte om denna metod är nödvändig
holder.imageView2.bringToFront();
holder.imageView2.setBackgroundResource(R.drawable.animation3);
frameAnimation = (AnimationDrawable) holder.imageView2.getBackground();
frameAnimation.start();
}});
break;
case 2:
try {
System.out.println("ViewTreeObserver is alive = : " + vto.isAlive());
} catch (Exception e) {
e.printStackTrace();
}
//v.getViewTreeObserver().removeOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener()); //vet inte om denna metod är nödvändig
holder.imageView2.setVisibility(View.GONE);
holder.imageView2.setBackgroundResource(0);
holder.imageView.bringToFront();
holder.text2.setText(null);
//holder.imageView.invalidate();
holder.text.setText(contents[groupPosition][childPosition]);
switch (childPosition) { // Switch-villkor för man eller kvinna.
case 0: // Man.
holder.imageView.setBackgroundResource(R.drawable.man_3);
break;
case 1: // Kvinna.
holder.imageView.setBackgroundResource(R.drawable.woman_3);
break;
}
break;
}
holder.volumeControl.setBackgroundResource(R.drawable.speaker);
notifyDataSetChanged();
return convertView;
}