android xml 解析错误,android – 解析XML时出错:自定义LinearLayout上的未绑定前缀...

我在stackoverflow上发现了自定义LinearLayout的这个例子,但是当我尝试运行它时会抛出错误,有人能找到它的错误吗?

自定义LinearLayout:

package com.example.androidapp.widgets;

import android.content.Context;

import android.content.res.TypedArray;

import android.util.AttributeSet;

import android.view.View;

import android.view.animation.Animation;

import android.view.animation.Transformation;

import android.widget.LinearLayout;

public class ExpandablePanel extends LinearLayout {

private final int mHandleId;

private final int mContentId;

private View mHandle;

private View mContent;

private boolean mExpanded = true;

private int mCollapsedHeight = 0;

private int mContentHeight = 0;

public ExpandablePanel(Context context) {

this(context, null);

}

public ExpandablePanel(Context context, AttributeSet attrs) {

super(context, attrs);

TypedArray a = context.obtainStyledAttributes(attrs,

R.styleable.ExpandablePanel, 0, 0);

// How high the content should be in "collapsed" state

mCollapsedHeight = (int) a.getDimension(

R.styleable.ExpandablePanel_collapsedHeight, 0.0f);

int handleId = a.getResourceId(R.styleable.ExpandablePanel_handle, 0);

if (handleId == 0) {

throw new IllegalArgumentException(

"The handle attribute is required and must refer "

+ "to a valid child.");

}

int contentId = a.getResourceId(R.styleable.ExpandablePanel_content, 0);

if (contentId == 0) {

throw new IllegalArgumentException(

"The content attribute is required and must refer "

+ "to a valid child.");

}

mHandleId = handleId;

mContentId = contentId;

a.recycle();

}

@Override

protected void onFinishInflate() {

super.onFinishInflate();

mHandle = findViewById(mHandleId);

if (mHandle == null) {

throw new IllegalArgumentException(

"The handle attribute is must refer to an"

+ " existing child.");

}

mContent = findViewById(mContentId);

if (mContent == null) {

throw new IllegalArgumentException(

"The content attribute is must refer to an"

+ " existing child.");

}

mHandle.setOnClickListener(new PanelToggler());

}

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

if (mContentHeight == 0) {

// First, measure how high content wants to be

mContent.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);

mContentHeight = mContent.getMeasuredHeight();

}

// Then let the usual thing happen

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

}

private class PanelToggler implements OnClickListener {

@Override

public void onClick(View v) {

Animation a;

if (mExpanded) {

a = new ExpandAnimation(mContentHeight, mCollapsedHeight);

} else {

a = new ExpandAnimation(mCollapsedHeight, mContentHeight);

}

a.setDuration(500);

mContent.startAnimation(a);

mExpanded = !mExpanded;

}

}

private class ExpandAnimation extends Animation {

private final int mStartHeight;

private final int mDeltaHeight;

public ExpandAnimation(int startHeight, int endHeight) {

mStartHeight = startHeight;

mDeltaHeight = endHeight - startHeight;

}

@Override

protected void applyTransformation(float interpolatedTime,

Transformation t) {

android.view.ViewGroup.LayoutParams lp = mContent.getLayoutParams();

lp.height = (int) (mStartHeight + mDeltaHeight * interpolatedTime);

mContent.setLayoutParams(lp);

}

@Override

public boolean willChangeBounds() {

// TODO Auto-generated method stub

return true;

}

}

}

res>值> attrs.xml

main.xml中:

xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:cl="http://schemas.android.com/apk/lib/com.example.androidapp.widgets"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:orientation="vertical"

android:layout_height="wrap_content"

android:layout_width="fill_parent"

cl:handle="@+id/expand"

cl:content="@+id/value"

cl:collapsedHeight="50dip">

android:id="@id/value"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:maxHeight="50dip"

/>

android:id="@id/expand"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="More" />

活动类:

package com.example.androidapp.widgets;

import android.app.Activity;

import android.os.Bundle;

public class GoodPanelsActivity extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

}

}

LogCat错误:

FATAL EXCEPTION: main java.lang.RuntimeException: Unable to start

activity

ComponentInfo{com.example.androidapp.widgets/com.example.androidapp.widgets.GoodPanelsActivity}:

android.view.InflateException: Binary XML file line #9: Error

inflating class com.example.androidapp.widgets.ExpandablePanel

编辑:更多来自LogCat

java.lang.reflect.InvocationTargetException at

java.lang.reflect.Constructor.constructNative(Native Method) at

java.lang.reflect.Constructor.newInstance(Constructor.java:415) at

android.view.LayoutInflater.createView(LayoutInflater.java:505) Caused

by: java.lang.IllegalArgumentException: The handle attribute is

required and must refer to a valid child. at

com.example.androidapp.widgets.ExpandablePanel.(ExpandablePanel.java:39)

解决方法:

最后我发现了这个问题:

在main.xml中查看以下行:

xmlns:cl="http://schemas.android.com/apk/lib/com.example.androidapp.widgets"

它应该是:

xmlns:cl="http://schemas.android.com/apk/res/com.example.androidapp.widgets"

因为我没有使用外部库和ExpandablePanel存在于res下.

干杯.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值