Reputation: 679
I am getting that error :
The import android.graphics.TableMaskFilter cannot be resolved
But I have seen TableMaskFilter class in android.graphics package of android-sdk folder and I am unable to see it inside the android4.0.3 library in Eclipse.
Upvotes: 2
Views: 1193
Reputation: 5227
You can't. TableMaskFilter
is annotated with @hide
, which means it's definition is stripped from android.jar
.
Upvotes: 6