2

我正在尝试实施SlidingDrawer. 我的应用程序崩溃了。

文件

<?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>

日志猫

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
4

2 回答 2

6
Caused by: java.lang.IllegalArgumentException: The handle attribute is must refer to an existing child.

如您指定的那样发生此错误

android:handle="@+id/handle" 

在 SlidingDrawer 的属性中。但是您没有任何现有的 ID 为“句柄”的滑动抽屉的子项。

检查句柄属性的文档:

代表抽屉把手的子项标识符。

必须是对另一个资源的引用,格式为“@[+][package:]type:name”或格式为“?[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>

希望能帮助到你。

于 2012-12-26T05:45:36.830 回答
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>    

现在都在工作。

于 2013-04-06T07:49:02.530 回答