由于布局转换导致Android崩溃

时间:2015-02-27 19:06:00

标签: android-layout casting

Android Studio 1.1.0,java 8,Windows 7 pro 64bit

我的应用程序因运行时致命异常而崩溃,日志中出现以下错误。 java.lang.ClassCastException:android.widget.RelativeLayout $ LayoutParams无法强制转换为android.widget.LinearLayout $ LayoutParams

如果我在java文件中注释掉第二行,它不会崩溃。但是我怎么能解决这个问题,我没有看到我的代码中发生了这样的演员。

谢谢

    RelativeLayout headerSection = (RelativeLayout)findViewById(R.id.contact_view_header); //fetch the layout
    headerSection.setLayoutParams(new RelativeLayout.LayoutParams(width, (int) (width * (9.0 / 16.0))));

这是xml文件

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="au.com.totalcareauto.sam.mycontacts.ContactViewActivity">

<RelativeLayout
    android:id="@+id/contact_view_header"
    android:layout_width="match_parent"
    android:layout_height="200dp">
    <ImageView
        android:id="@+id/contact_view_image"
        android:src="@mipmap/sunset"
        android:scaleType="centerCrop"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <TextView
        android:id="@+id/contact_view_name"
        android:layout_alignParentBottom="true"
        android:layout_marginLeft="@dimen/vertical_margin_small"
        android:textAppearance="@style/TextAppearance.AppCompat.Display1"
        android:textColor="@android:color/white"
        android:text="@string/hello_world"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <android.support.v7.widget.Toolbar
        android:id="@+id/contact_view_toolbar"
        android:fitsSystemWindows="true"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        android:minHeight="?attr/actionBarSize"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</RelativeLayout>

<ListView
    android:id="@+id/contact_view_fields"
    android:layout_width="match_parent"
    android:layout_weight="100"
    android:layout_height="0dp" />

1 个答案:

答案 0 :(得分:0)

您正在为LayoutParams的子类做出错误的选择。

LayoutParams的正确形式应取决于 LinearLayout 而不是 RelativeLayout ,因为 LinearLayout 父视图在您的情况下, RelativeLayout 子视图

因此,您可以使用 LinearLayout.LayoutParams 代替 RelativeLayout.LayoutParams ,也可以使用RelativeLayout作为Root视图。

 RelativeLayout headerSection = (RelativeLayout)findViewById(R.id.contact_view_header); //fetch the layout
 headerSection.setLayoutParams(new LinearLayout.LayoutParams(width, (int) (width * (9.0 / 16.0))));

我认为这可以解决您的问题。我已经测试了它,它工作正常。