You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
733 B

package p058t;
import android.content.Context;
import android.view.View;
/* renamed from: t.a */
/* loaded from: classes.dex */
public class C1632a {
/* renamed from: a */
public static String m758a(Context context, int i) {
if (i != -1) {
try {
return context.getResources().getResourceEntryName(i);
} catch (Exception unused) {
return "?" + i;
}
}
return "UNKNOWN";
}
/* renamed from: b */
public static String m757b(View view) {
try {
return view.getContext().getResources().getResourceEntryName(view.getId());
} catch (Exception unused) {
return "UNKNOWN";
}
}
}