1

在此行找到多个注释:-[辅助功能] 图像上缺少 contentDescription 属性

我的xml代码是:

 <?xml version="1.0" encoding="utf-8"?>
  <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@+id/iv_Seelct_Image"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:src="@drawable/select_image"/>
  <GridView  
          android:id="@+id/gridview"
          android:layout_width="fill_parent" 
          android:layout_height="fill_parent"
          android:columnWidth="270dp"
          android:numColumns="auto_fit"
          android:verticalSpacing="10dp"
          android:horizontalSpacing="10dp"
          android:stretchMode="columnWidth"
          android:gravity="center"/>
4

2 回答 2

0

您需要将android:contentDescription="@string/desc"其作为属性添加到 ImageView。

于 2012-05-17T06:16:12.593 回答
0

您的 xml 文件必须具有像 LinearLayout 或 RelativeLayout 这样的根布局

<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

<your imageview>
<your gridview>


</RelativeLayout>
于 2012-05-17T06:17:50.080 回答