我面临一个棘手的问题。 我的安乐施应用在我的电话上(Android edition 2.3.5, AP 9),涉及我的一些支持者(Android edition >= 2.2,APIC >=8,在APIC8、13、15上测试,而不是在我的其他支持者(Android edition < 2.2,APIC <8,在4、7上测试)。 摄像机中带有APIC和APIC的摄像机;8,但我的一些习俗图像在屏幕上消失。 否则,一切照样工作。
我使用了该工具的最新版本lint,以确定我是否使用过任何未经APIC <支持的方法;8,但我确定的唯一情况是,我使用一种方法,要求第4号,在设定和roid时不使用有关APIC的错误信息:minSdkVersion=4, 和roid:targetSdkVersion=4,并针对4。
我还研究了,因为这一错误似乎发生在APIC7至8之间,但找不到任何东西。 我也检查了我对开发商的《形象评论》中的所有方法,以便了解是否有任何方法需要APIC >7。
是否有人对问题可能是什么提出任何其他建议?
<><>Edit>:
我的主要卷宗是:
<?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"
android:orientation="vertical"
android:id="@+id/gameLayoutID"
>
<fragment
android:id="@+id/groundMenuID"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
class="com.foo.bar.someClass"/>
<fragment
android:id="@+id/topLeftMenuID"
android:layout_width="@dimen/TopLeftRightMenu_width"
android:layout_height="@dimen/TopMenu_height"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
class="com.foo.bar.someClass"/>
<fragment
android:id="@+id/topRightMenuID"
android:layout_width="@dimen/TopLeftRightMenu_width"
android:layout_height="@dimen/TopMenu_height"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
class="com.foo.bar.someClass"/>
<fragment
android:id="@+id/leftMenuID"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_above="@id/groundMenuID"
android:layout_below="@id/topLeftMenuID"
class="com.foo.bar.someClass"/>
<fragment
android:id="@+id/rightMenuID"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_above="@id/groundMenuID"
android:layout_below="@id/topRightMenuID"
class="com.foo.bar.someClass"/>
<fragment
android:id="@+id/topMenuID"
android:layout_width="fill_parent"
android:layout_height="@dimen/TopMenu_height"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/topLeftMenuID"
android:layout_toLeftOf="@id/topRightMenuID"
class="com.foo.bar.someClass"/>
<com.foo.bar.CustomImageViewLayout
android:id="@+id/wheelMenuID"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_toRightOf="@id/leftMenuID"
android:layout_toLeftOf="@id/rightMenuID"
android:layout_below="@id/topMenuID"
android:layout_above="@id/groundMenuID"/>
<fragment
android:id="@+id/figurePassageID"
android:layout_width="fill_parent"
android:layout_height="@dimen/figurePassage_height"
android:layout_above="@id/groundMenuID"
class="com.foo.bar.someClass"/>
</RelativeLayout>
这些碎块通过在CreateView方法上的标准分级被压缩,不管其是APIC。 至于“习俗形象”类......它有很多法典,我不相信我是否愿意在公开场合(这是我的主要知识产权)。 我确信这一错误没有发生,但我将再次加以核实。 如果我不这样做,我就将努力遵守某些法典。