当前位置: 首页 > 知识库问答 >
问题:

JAVAClassCastException:android。小装置。LinearLayout无法转换为android。支持v7。小装置。工具栏

扈韬
2023-03-14

我试图在工具栏上添加一个阴影,下面是这个例子https://stackoverflow.com/a/26904102/4273056

活动中的我的工具栏

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

   Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
}

这是我添加工具栏的xml文件

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

<android.support.v7.widget.Toolbar            
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primaryColor"
android:paddingTop="@dimen/app_bar_top_padding"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
app:theme="@style/MyCustomToolBarTheme">

</android.support.v7.widget.Toolbar>
<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- **** Place Your Content Here **** -->

    <View
        android:layout_width="match_parent"
        android:layout_height="5dp"
        android:background="@drawable/shadow" />
</FrameLayout>
</LinearLayout>

我在logcat java中得到了这个。ClassCastException:android。小装置。LinearLayout无法转换为android。支持v7。小装置。工具栏

我怎样才能摆脱这个错误?

共有1个答案

廖弘量
2023-03-14

在工具栏中添加id属性,并检查是否有其他具有相同id的元素。

<android.support.v7.widget.Toolbar 
   android:id="@+id/toolbar"
   .....
/>

还有更好的:

 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    if (toolbar != null)
        setSupportActionBar(toolbar);
 类似资料: