2

这是我的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<com.example.MyApp.CustomDisplay
   xmlns:custom="http://schemas.android.com/apk/res/com.example.MyApp22"
    android:layout_gravity="center"
    android:layout_alignParentTop="true"
    android:layout_marginTop="10dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    custom:showInput="true"
    custom:showOutput="true"
/>

</RelativeLayout>

我想在我的 MainActivity 中使用属性名称“showInput”。所以我找到了这个。

//Code to get atrributes from xml file
Resources res = getResources();
XmlPullParser parser = res.getXml(R.layout.display);
int type = 0;
while (type != XmlPullParser.END_DOCUMENT && type != XmlPullParser.START_TAG) 
{
    try{
       type = parser.next();
    }catch (Exception e) {
        e.printStackTrace();
    }
    }
    attrs = Xml.asAttributeSet(parser);
  Log.d("Attrbutes",String.valueOf(attrs.getAttributeValue("http://schemas.android.com/apk/res/com.example.sks_calculator","showInput")));

这里 Log 显示 null 而不是 true。

如果你知道我做错了什么,请建议我?

4

0 回答 0