提示XML资源无法找到
[2016-03-10 05:04:08 - Amenu] W/ResourceType( 4016): Bad XML block: header size 213 or total size 0 为什么 我的出现错误,一直是这样
[2016-03-10 05:04:08 - Amenu] W/ResourceType( 4016): Bad XML block: header size 213 or total size 0 为什么 我的出现错误,一直是这样
2016-03-10
将这个复制到你的布局文件中试一下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:hyman="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 这里写你的自定义控件的包名文件名 -->
<myapplication.com.imooc_arcmenu.view.ArcMenu
android:id="@+id/id_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
hyman:position="right_bottom"
hyman:radius="140dp">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/composer_button">
<ImageView
android:id="@+id/id_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@mipmap/composer_icn_plus" />
</RelativeLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/composer_music"
android:tag="Music" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/composer_place"
android:tag="Place" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/composer_sleep"
android:tag="Sleep" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/composer_thought"
android:tag="Sun" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/composer_with"
android:tag="People" />
</myapplication.com.imooc_arcmenu.view.ArcMenu>
</RelativeLayout>
举报