Home | History | Annotate | Download | only in multiwaveview

Lines Matching refs:resourceId

218                 a.peekValue(R.styleable.GlowPadView_handleDrawable).resourceId);
233 internalSetTargetResources(outValue.resourceId);
241 final int resourceId = outValue.resourceId;
242 if (resourceId == 0) {
245 setTargetDescriptionsResourceId(resourceId);
250 final int resourceId = outValue.resourceId;
251 if (resourceId == 0) {
254 setDirectionDescriptionsResourceId(resourceId);
275 return tv == null ? 0 : tv.resourceId;
551 private ArrayList<TargetDrawable> loadDrawableArray(int resourceId) {
553 TypedArray array = res.obtainTypedArray(resourceId);
558 TargetDrawable target = new TargetDrawable(res, value != null ? value.resourceId : 0);
565 private void internalSetTargetResources(int resourceId) {
566 final ArrayList<TargetDrawable> targets = loadDrawableArray(resourceId);
568 mTargetResourceId = resourceId;
589 * Loads an array of drawables from the given resourceId.
591 * @param resourceId
593 public void setTargetResources(int resourceId) {
596 mNewTargetResources = resourceId;
598 internalSetTargetResources(resourceId);
609 * @param resourceId The resource id.
611 public void setTargetDescriptionsResourceId(int resourceId) {
612 mTargetDescriptionsResourceId = resourceId;
630 * @param resourceId The resource id.
632 public void setDirectionDescriptionsResourceId(int resourceId) {
633 mDirectionDescriptionsResourceId = resourceId;
1122 private ArrayList<String> loadDescriptions(int resourceId) {
1123 TypedArray array = getContext().getResources().obtainTypedArray(resourceId);
1139 public void setEnableTarget(int resourceId, boolean enabled) {
1142 if (target.getResourceId() == resourceId) {
1151 * @param resourceId
1154 public int getTargetPosition(int resourceId) {
1157 if (target.getResourceId() == resourceId) {