Android Studio不识别support.v4.app.FragmentTabHost的问题。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio不识别support.v4.app.FragmentTabHost的问题。相关的知识,希望对你有一定的参考价值。

android Studio实现底部标签页功能,同样的代码在Eclipse里面是没有问题的,现在在AS里面预览的时候总是报错:Exception raised during rendering: No tab known for tag null

 

XML源码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

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

    <View
        android:layout_width="fill_parent"
        android:layout_height="0.5dp"
        android:background="#BFBFBF" />

    <android.support.v4.app.FragmentTabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/maintab_bg" >

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

</LinearLayout>

  Gradle引用了V7包

apply plugin: ‘com.android.application‘

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "*************"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.pro‘
        }
    }
}

dependencies {
    compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
    testCompile ‘junit:junit:4.12‘
    compile ‘com.android.support:appcompat-v7:22.2.1‘
    compile ‘com.android.support:design:22.2.1‘
    compile ‘com.jakewharton:butterknife:7.0.1‘
}

  

以上是关于Android Studio不识别support.v4.app.FragmentTabHost的问题。的主要内容,如果未能解决你的问题,请参考以下文章

Visual Studio 中的 Cordova 项目无法在 Android 上构建:找不到 com.android.support:support-v4

Android studio中怎么导入android.support.v4包

android.support.v4.widget.DrawerLayout 不在 Android Studio 中呈现

Andriod Studio build过程中出现 “android.support.annotation”

Android Studio 新建Andorid工程报错: Conflict with dependency 'com.android.support:support-annotations&

(转)Android Studio Error:Failed to resolve: com.android.support:appcompat-v7:25.1.0解决方案