In custom TextView I'm trying to obtain value of a text attribute (for example).
TypedArray values = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.TextView);
String text = values.getString(com.android.internal.R.styleable.TextView_text);
But I'm getting this error message:
package com.android.internal.R does not exist
So how to retrieve "default" attributes of TextView?
 
     
     
     
     
     
    