This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.iml | |
.gradle | |
/local.properties | |
/.idea/workspace.xml | |
/.idea/libraries | |
.DS_Store | |
/build | |
/captures | |
.externalNativeBuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private PopupWindow mPWMenu; | |
private LinearLayout mLMenu; | |
private float sD; | |
private Context appContext; | |
private void showPopupWindow() { | |
mLMenu = (LinearLayout) appContext.LayoutInflater().inflate(R.layout.layer_menu, null); | |
mLMenu.setFocusableInTouchMode(true); | |
mPWMenu = new PopupWindow(mLMenu, (int) (260*sD), WindowManager.LayoutParams.WRAP_CONTENT, true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- http://stackoverflow.com/questions/1700099/android-how-to-create-a-background-from-pattern --> | |
<bitmap xmlns:android="http://schemas.android.com/apk/res/android" | |
android:src="@drawable/subtlepatterns_escheresque_ste" | |
android:tileMode="repeat" /> |