渲染问题渲染期间引发异常:ANDROID 中没有已知标签为空的选项卡
Rendering Problems Exception raised during rendering: No tab known for tag null in ANDROID
<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
渲染问题渲染期间出现异常:没有标签已知的标签 null.By 此错误无法在 Android studio 中预览。
如果此错误显示 xml 视图
检查你的 android 版本 api 如果这个是 23 根据 android sdk lib
做 22 或 21
此错误是由于选项卡片段不可用造成的。请将您的 API 版本(gradle 文件更改 api 版本)更改为您的工作室可用的版本。更改后单击预览部分中的重新加载按钮
<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
渲染问题渲染期间出现异常:没有标签已知的标签 null.By 此错误无法在 Android studio 中预览。
如果此错误显示 xml 视图 检查你的 android 版本 api 如果这个是 23 根据 android sdk lib
做 22 或 21此错误是由于选项卡片段不可用造成的。请将您的 API 版本(gradle 文件更改 api 版本)更改为您的工作室可用的版本。更改后单击预览部分中的重新加载按钮