为了账号安全,请及时绑定邮箱和手机立即绑定

自定义viewgroup时,报错提示:没有找到属性rightpadding的资源标识符

54ae419c0001365b05000087.jpg


xml文件中的引用:

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

    xmlns:tools="http://schemas.android.com/tools"

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

    android:layout_width="match_parent"

    android:layout_height="match_parent" >


已指明属性的用法:

public SlidingMenu(Context context, AttributeSet attrs, int defStyle) {

super(context,attrs,defStyle);

TypedArray a = context.getTheme().obtainStyledAttributes(attrs,R.styleable.SlidingMenu, defStyle, 0);

int n = a.getIndexCount();

for (int i = 0; i < n; i++)

{

int attr = a.getIndex(i);

switch (attr)

{

case R.styleable.SlidingMenu_rightPadding:

mMenuRightPadding = a.getDimensionPixelSize(attr,(int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 50, context.getResources().getDisplayMetrics()));

break;

}

}


attr.xml:


<?xml version="1.0" encoding="utf-8"?>

<resources>


    <attr name="rightPadding" format="dimension"></attr>


    <declare-styleable name="SlidingMenu">

        <attr name="rightPadding"></attr>

    </declare-styleable>


</resources>


正在回答

2 回答

你好,从你贴出的代码,看起来没有问题,建议把项目clean,或者close Project 在 open Project 尝试下。

0 回复 有任何疑惑可以回复我~

mainfest中的包名也是正确的

<?xml version="1.0" encoding="utf-8"?>

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

    package="com.immoc.slidingmenu"

    android:versionCode="1"

    android:versionName="1.0" >


    <uses-sdk

        android:minSdkVersion="8"

        android:targetSdkVersion="21" />


    <application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/Theme.AppCompat.Light.NoActionBar" >

        <activity

            android:name="com.imooc.slidingmenu.MainActivity"

            android:label="@string/app_name" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />


                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>


</manifest>


0 回复 有任何疑惑可以回复我~
#1

mandy

你的xmlns中是com.imooc.slidingmenu Project的包名是com.immoc.slidingmenu
2015-02-02 回复 有任何疑惑可以回复我~
#2

由木 回复 mandy

好眼力!!!!
2015-12-15 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
QQ5.0侧滑菜单
  • 参与学习       62531    人
  • 解答问题       295    个

本教程将带领大家通过自定义控件实现QQ5.0侧滑菜单

进入课程

自定义viewgroup时,报错提示:没有找到属性rightpadding的资源标识符

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信