最近我使用Android支持库版本23.2.0更新了我的应用程序,我发现此库中存在一个错误,导致应用程序在膨胀片段时崩溃。
这是从GoogleAnalytics看到的错误。到目前为止,我在Android 6.0,2.3.6和4.4.4中找到了它: IllegalStateException(@ CoordinatorLayout $ LayoutParams:resolveAnchorView:2522){main}
这似乎是支持库中的一个错误(它似乎也会影响其他组件)。我已经解决了它返回到版本23.1.1并且我的应用程序完美运行。我还没有找到崩溃的原因,但在这里你是造成它的碎片。也许你可以看到别的东西。
非常感谢!
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/linear_lines"
android:layout_height="match_parent"
android:layout_width="match_parent"
>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_lines"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_above="@+id/relative_date_text"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:id="@+id/sliding_tabs"
style="@style/MyCustomTabLayout"
android:layout_width="match_parent"
android:layout_height="@dimen/abc_action_button_min_height_material"
android:background="@color/blue_soriabus"
android:elevation="10dp"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v4.view.ViewPager
android:id="@+id/vpPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<View
android:id="@+id/shadow_view"
android:layout_width="match_parent"
android:layout_height="7dp"
android:background="@drawable/toolbar_shadow" />
</RelativeLayout>
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/floating_button_open_map"
app:borderWidth="0dp"
app:backgroundTint="@color/blue_soriabus"
app:elevation="10dp"
android:src="@drawable/ic_map_white_48dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right|end"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp"
android:layout_alignParentBottom="true"
app:layout_anchor="@id/coordinator_lines"
app:layout_anchorGravity="bottom|right|end"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/floating_button_open_calendar"
app:borderWidth="0dp"
app:backgroundTint="@color/blue_soriabus"
app:elevation="10dp"
android:src="@drawable/ic_calendar_white_36dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="90dp"
app:layout_anchor="@id/floating_button_open_map"
app:layout_anchorGravity="top"
android:layout_gravity="top|right|end"
/>
</android.support.design.widget.CoordinatorLayout>
<RelativeLayout
android:id="@+id/relative_date_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="10dp"
android:background="@color/blue_soriabus_dark"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
>
<TextView
android:id="@+id/date_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/pure_white"
android:layout_centerInParent="true"
android:text="Fecha"
/>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:1)
layout_anchor
必须是CoordinatorLayout
的孩子,但您使用的是coordinator_lines
(即您自己的CoordinatorLayout
)。
如果您没有特定的孩子,则需要锚定您的观看次数,只需使用layout_gravity
代替layout_anchorGravity
并完全删除layout_anchor
。