에러시점은 레이아웃 파일 내 빨간색으로 표시한 줄번호에서 오류가 납니다.
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
android:background="?attr/colorPrimary"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
android.support.design.widget.TabLayout 은 jar파일이 없길래 수동으로 라이브러리를 임포트 시켰고요..

액티비티 테마는
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- your app branding color for the app bar -->
<item name="colorPrimary">#3F51B5</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="colorPrimaryDark">#303F9F</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="colorAccent">#FF4081</item>
</style>
이렇게 쓰고 있고요..
로크캣 오류는


하루종일 찾아봐도 방법을 못찾겠네요.. 도와주세요!!