style / ActionBar找不到与给定名称匹配的资源

时间:2012-12-08 14:05:31

标签: android

我正在尝试将Action Bar添加到我的Main活动中 我添加了shareLockBar库,我正在使用APPI 15

问题是我在/res/values/main_Activity.xml中的style =“@ style / ActionBar”上收到错误, 其中没有找到与给定名称匹配的资源。

我在某处读到了我需要将这种风格添加到/res/values/styles.xml 但我不知道要添加什么,父母应该是什么?

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



<com.markupartist.android.widget.ActionBar
    android:id="@+id/actionbar"
    **style="@style/ActionBar"**/>

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

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </ListView>
</LinearLayout>

0 个答案:

没有答案