android.support.v4.app.FragmentTabHost无法强制转换为android.widget.LinearLayout

时间:2013-12-21 14:14:02

标签: android

此代码用于正常工作,但在更新我的构建工具和sdk后,我开始得到此强制转换异常。有谁知道如何解决它?

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_tab_view);

    mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);

    TabWidget tw = (TabWidget) findViewById(android.R.id.tabs);
    LinearLayout ll = (LinearLayout) tw.getParent(); //error happens on this line
     ...
    }

main_tab_view.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <FrameLayout
            android:id="@+id/realtabcontent"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />

        <android.support.v4.app.FragmentTabHost
            android:id="@android:id/tabhost"
            android:layout_width="match_parent"

            android:layout_height="wrap_content" >

            <TabWidget
                android:id="@android:id/tabs"

                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal" />

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="0" />
        </android.support.v4.app.FragmentTabHost>
    </LinearLayout>

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/blue_actionbar_light"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="10dp"
        android:listSelector="@drawable/selectable_background_darkblue" />

</android.support.v4.widget.DrawerLayout>
  

java.lang.RuntimeException:无法启动活动   java.lang.ClassCastException:android.support.v4.app.FragmentTabHost   无法转换为android.widget.LinearLayout

1 个答案:

答案 0 :(得分:1)

我终于设法修复了它。

我不得不恢复到以前工作的支持库的版本。幸运的是我有一个备份。我也使用相同的android sdk来构建以前工作过的。