我正在尝试实施SlidingDrawer
。我的应用程序崩溃了。
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" >
<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:content="@+id/content"
android:handle="@+id/handle" >
</SlidingDrawer>
<LinearLayout
android:id="@+id/contentLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#C0C0C0"
android:gravity="center|top"
android:orientation="vertical"
android:padding="10dip" >
<include
android:id="@+id/include1"
android:layout_width="fill_parent"
android:layout_height="60dp"
layout="@layout/header_history" >
</include>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:divider="@android:color/black"
android:dividerHeight="1.0sp"
android:textColor="#000000" />
</LinearLayout>
</LinearLayout>
logcat的
12-25 17:40:33.582: E/AndroidRuntime(454): FATAL EXCEPTION: main
12-25 17:40:33.582: E/AndroidRuntime(454): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.demohistory/com.example.demohistory.History}: java.lang.IllegalArgumentException: The handle attribute is must refer to an existing child.
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.os.Handler.dispatchMessage(Handler.java:99)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.os.Looper.loop(Looper.java:123)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.ActivityThread.main(ActivityThread.java:4627)
12-25 17:40:33.582: E/AndroidRuntime(454): at java.lang.reflect.Method.invokeNative(Native Method)
12-25 17:40:33.582: E/AndroidRuntime(454): at java.lang.reflect.Method.invoke(Method.java:521)
12-25 17:40:33.582: E/AndroidRuntime(454): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
12-25 17:40:33.582: E/AndroidRuntime(454): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
12-25 17:40:33.582: E/AndroidRuntime(454): at dalvik.system.NativeStart.main(Native Method)
12-25 17:40:33.582: E/AndroidRuntime(454): Caused by: java.lang.IllegalArgumentException: The handle attribute is must refer to an existing child.
12-25 17:40:33.582: E/AndroidRuntime(454): at android.widget.SlidingDrawer.onFinishInflate(SlidingDrawer.java:239)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.view.LayoutInflater.rInflate(LayoutInflater.java:626)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.view.LayoutInflater.rInflate(LayoutInflater.java:621)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.view.LayoutInflater.inflate(LayoutInflater.java:407)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
12-25 17:40:33.582: E/AndroidRuntime(454): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:198)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.Activity.setContentView(Activity.java:1647)
12-25 17:40:33.582: E/AndroidRuntime(454): at com.example.demohistory.History.onCreate(History.java:59)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
12-25 17:40:33.582: E/AndroidRuntime(454): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
12-25 17:40:33.582: E/AndroidRuntime(454): ... 11 more
答案 0 :(得分:6)
Caused by: java.lang.IllegalArgumentException: The handle attribute is must refer to an existing child.
指定
时发生此错误android:handle="@+id/handle"
在SlidingDrawer的属性中。但是你没有任何现有的Sliding抽屉子带有id'handle'。
检查documentation是否有句柄属性:
代表抽屉手柄的孩子的标识符。
必须是表单中对其他资源的引用 “@ [+] [package:] type:name”或表单中的主题属性 “[包:] [类型:]名称”。
因此您必须将xml文件修改为:
<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:content="@+id/content"
android:handle="@+id/handle" >
<ImageView
android:id="@id/handle"
android:layout_width="88dip"
android:layout_height="44dip" />
</SlidingDrawer>
希望它有所帮助。
答案 1 :(得分:4)
从SDK复制SlidingDrawer代码并将其导入我的项目时遇到了类似的问题。我的问题是布局文件的命名空间。
我通过正确识别我所指的属性来解决问题:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dd="http://schemas.android.com/apk/res/com.example.actionbarslider"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.actionbarslider.MySlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
dd:content="@+id/mycontent"
dd:handle="@+id/handle"
dd:orientation="0" >
<ImageView
android:id="@id/handle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/exit_light" />
<LinearLayout
android:id="@id/mycontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="Hello"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="World"
android:textSize="20sp" />
</LinearLayout>
</com.example.actionbarslider.MySlidingDrawer>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Top Drawer"/>
</LinearLayout>
注意:我创建了自己的命名空间来引用可标记的属性,匹配标准的“android”命名空间。 。 “的xmlns:DD =” ....“
我为attrs.xml文件做了同样的事情,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<declare-styleable name="MySlidingDrawer">
<!-- Identifier for the child that represents the drawer's handle. -->
<attr name="handle" format="reference" />
<!-- Identifier for the child that represents the drawer's content. -->
<attr name="content" format="reference" />
<!-- Orientation of the SlidingDrawer. -->
<attr name="orientation" format="integer"/>
<!-- Extra offset for the handle at the bottom of the SlidingDrawer. -->
<attr name="bottomOffset" format="dimension" />
<!-- Extra offset for the handle at the top of the SlidingDrawer. -->
<attr name="topOffset" format="dimension" />
<!-- Indicates whether the drawer can be opened/closed by a single tap
on the handle. (If false, the user must drag or fling, or click
using the trackball, to open/close the drawer.) Default is true. -->
<attr name="allowSingleTap" format="boolean" />
<!-- Indicates whether the drawer should be opened/closed with an animation when the user clicks the handle. Default is true. -->
<attr name="animateOnClick" format="boolean" />
</declare-styleable>
现在全部工作。