get Row Id from resource - Android App

Android examples for App:Resource

Description

get Row Id from resource

Demo Code

/**//from  ww w  .j a v a2s. c o m
 * Created by slynero at 2:23 on 14-7-18.
 * Copyright (c) 2014 FineSoft. All rights reserved.
 */
//package com.java2s;
import android.content.Context;

public class Main {
    public static int getRowId(Context paramContext, String paramString) {
        return paramContext.getResources().getIdentifier(paramString,
                "row", paramContext.getPackageName());
    }
}

Related Tutorials