Android XmlPullParser Read readStringAttribute(XmlPullParser in, String name)

Here you can find the source of readStringAttribute(XmlPullParser in, String name)

Description

read String Attribute

License

Apache License

Declaration

public static String readStringAttribute(XmlPullParser in, String name) 

Method Source Code

//package com.java2s;
/*// w ww. j  ava2 s  . co  m
 * Copyright (C) 2006 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import org.xmlpull.v1.XmlPullParser;

public class Main {
    public static String readStringAttribute(XmlPullParser in, String name) {
        return in.getAttributeValue(null, name);
    }
}

Related

  1. readLongAttribute(XmlPullParser in, String name)
  2. readLongAttribute(XmlPullParser in, String name, long defaultValue)
  3. readNumber(XmlPullParser parser)
  4. readString(XmlPullParser parser, String ns, String tag)
  5. readStringArray(XmlPullParser parser, String tagName, String delimiter)
  6. readText(XmlPullParser parser)
  7. readText(XmlPullParser parser)
  8. readText(XmlPullParser parser)
  9. readText(XmlPullParser parser)