Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TabLayout - No resource identifier found for attribute

I am using TabLayout which is introduced in new android widget package android.support.design.widget.TabLayout

Yesterday my code is working fine, now today I was start my computer and trying to re-build the project now Mr. Compiler is saying following error

Error:(22) No resource identifier found for attribute 'eleMode' in package 'android'
Error:(22) No resource identifier found for attribute 'tabGrvation' in package 'android.com.hsc.yatra'
Error:(22) No resource identifier found for attribute 'tabavity' in package 'android.com.hsc.yatra'

Please guide me where I'm incorrect ? So my compiler get happy and then compile the project.

Here is my XML where original error was occured

<android.support.design.widget.CoordinatorLayout 

    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="match_parent">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <!--<android.support.v7.widget.Toolbar-->
            <!--android:id="@+id/toolbar"-->
            <!--android:layout_width="match_parent"-->
            <!--android:layout_height="?attr/actionBarSize"-->
            <!--android:background="?attr/colorPrimary"-->
            <!--app:layout_scrollFlags="scroll|enterAlways"-->
            <!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />-->
            <include layout="@layout/toolbar_searched_bus">

            </include>

            <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:eleMode="fixed"
                app:tabGrvation="2dp"
                app:tabavity="fill" />
        </android.support.design.widget.AppBarLayout>

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />
    </android.support.design.widget.CoordinatorLayout>
like image 795
Lavekush Agrawal Avatar asked Dec 23 '15 05:12

Lavekush Agrawal


1 Answers

Add support library to your build.gradle (Module:app) as follows,

dependencies {
 compile 'com.android.support:design:24.+'
}
like image 65
Parinda Rajapaksha Avatar answered Nov 14 '22 23:11

Parinda Rajapaksha