我对Android比较陌生,我遇到了以下问题。我有一个xml布局代码,它似乎在1.5上工作,但在1.6上失败,并且在RelativeLayout中不允许循环依赖。 我已经搜索了有关该错误的一些信息,我得到了基础知识。关于这个主题的信息仍然太少。 我仍然无法想象,我的代码中究竟出现了循环依赖。 拜托,你们有些人可能会指出我发生的事情,然后解释原因吗?
<LinearLayout
android:orientation="horizontal"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center_horizontal">
<ImageView
android:paddingTop="3dip"
android:id="@+id/typeicon"
android:scaleType="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
<RelativeLayout
android:orientation="vertical"
android:layout_width="0dip"
android:layout_weight="6.5"
android:layout_height="fill_parent"
android:paddingRight="20dip">
<RelativeLayout
android:layout_alignParentTop="true"
android:id="@+id/toprellistlayout"
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="wrap_content">
<TextView
android:id="@+id/trannumbertext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="16sp"
android:textStyle="bold"
android:layout_alignParentLeft="true"/>
<TextView
android:id="@+id/summtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="16sp"
android:layout_alignParentRight="true"
android:textStyle="bold"/>
</RelativeLayout>
<TextView
android:layout_below="@id/toprellistlayout"
android:id="@+id/maintranstext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:textSize="13sp"
android:textStyle="bold"
/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_weight="1"
android:paddingTop="4dip"
android:layout_below="@id/maintranstext"
android:id="@+id/toprellistlayout"
android:layout_height="wrap_content">
<TextView
android:id="@+id/datetext"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight=".3"
android:textSize="11sp"
android:text="01.01.0000 00:00:00"
android:textStyle="bold"
android:gravity="center"
android:layout_alignParentLeft="true"/>
<TextView
android:id="@+id/statusview"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight=".7"
android:gravity="center"
android:text="@string/finlist_rejected"
android:drawableLeft="@drawable/cross"
android:drawablePadding="5dip"
android:background="@android:id/empty"
android:layout_alignParentRight="true"
android:textStyle="bold"
android:textSize="11sp"/>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:-1)
在一小时后通过部分删除这些行,我终于想通了,那里的“循环依赖”是什么
看来,当SDK解析RelativeLayout
xml并定位项目时 - 它不能占用视图C,它位于视图B下方,位于视图A下方。如果仔细观察 - 你会在我的代码中找到那个部分
解决方案是制作一个额外的RelativeLayout
,用于放置视图C和B.