定位Android 4.3时出现奇怪的XML布局错误
作者:互联网
在针对API级别18构建应用程序时,我遇到了一个XML布局文件的真正异常.API级别17并没有发生这种情况.我在Android 4.3设备上运行该应用程序,并且该错误在所有设备上仍然存在三个设备.
看起来是这样的:
API 17(正确):
API 18(不正确):
我正在使用StickyGridHeaders library,以下是我的getHeaderView()方法:
@Override
public View getHeaderView(int position, View convertView, ViewGroup parent) {
RowItem holder;
if (convertView == null) {
convertView = inflater.inflate(R.layout.seasons_row_header, parent, false);
holder = new RowItem();
holder.title = (TextView) convertView.findViewById(R.id.seasonTitle);
holder.episodeCount = (TextView) convertView.findViewById(R.id.episodeCount);
convertView.setTag(holder);
} else {
holder = (RowItem) convertView.getTag();
}
if (seasons.get(position).equals("00")) {
holder.title.setText(R.string.stringSpecials);
} else {
holder.title.setText(getString(R.string.showSeason) + " " + seasons.get(position));
}
int size = seasonEpisodeCount.get(Integer.valueOf(seasons.get(position)));
holder.episodeCount.setText(size + " " + getResources().getQuantityString(R.plurals.episodes, size, size));
convertView.setClickable(false);
convertView.setFocusable(false);
return convertView;
}
这是布局XML文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#80000000"
android:padding="@dimen/list_padding" >
<TextView
android:id="@+id/seasonTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginRight="@dimen/list_padding"
android:layout_toLeftOf="@+id/episodeCount"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textIsSelectable="false"
android:textStyle="bold" />
<TextView
android:id="@+id/episodeCount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/seasonTitle"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/seasonTitle"
android:gravity="bottom"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textIsSelectable="false" />
</RelativeLayout>
还有其他人对这里发生的事情有任何线索吗?我发现它在以API级别17为目标时有效,而在以最新API级别(18)为目标时却无效.
更新:
这是在以Android 4.3为目标的可视布局编辑器中的外观:
解决方法:
我设法自己解决了这个问题.
就像我说的那样,我正在使用StickyGridHeaders库,并在我的应用程序中引用它.该库似乎针对API级别17.我将其更改为级别18,编译并运行了该应用程序-取得了巨大的成功!
结论:确保您的应用程序和库针对相同的API级别.
标签:android-xml,android-4-3-jelly-bean,android 来源: https://codeday.me/bug/20191122/2062435.html