ez.java
1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import android.annotation.TargetApi;
import android.support.annotation.RequiresApi;
import android.util.Log;
import android.widget.PopupWindow;
import java.lang.reflect.Field;
@TargetApi(21)
@RequiresApi(21)
public final class ez
{
private static Field a;
static
{
try
{
Field localField = PopupWindow.class.getDeclaredField("mOverlapAnchor");
a = localField;
localField.setAccessible(true);
return;
}
catch (NoSuchFieldException localNoSuchFieldException)
{
Log.i("PopupWindowCompatApi21", "Could not fetch mOverlapAnchor field from PopupWindow", localNoSuchFieldException);
}
}
public static void a(PopupWindow paramPopupWindow, boolean paramBoolean)
{
if (a != null) {}
try
{
a.set(paramPopupWindow, Boolean.valueOf(paramBoolean));
return;
}
catch (IllegalAccessException paramPopupWindow)
{
Log.i("PopupWindowCompatApi21", "Could not set overlap anchor field in PopupWindow", paramPopupWindow);
}
}
public static boolean a(PopupWindow paramPopupWindow)
{
if (a != null) {
try
{
boolean bool = ((Boolean)a.get(paramPopupWindow)).booleanValue();
return bool;
}
catch (IllegalAccessException paramPopupWindow)
{
Log.i("PopupWindowCompatApi21", "Could not get overlap anchor field in PopupWindow", paramPopupWindow);
}
}
return false;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/ez.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/