¡@

Home 

2014/10/16 ¤W¤È 08:09:27

android Programming Glossary: activity.getwindow

android:take screenshot and share it

http://stackoverflow.com/questions/10296711/androidtake-screenshot-and-share-it

static Bitmap takeScreenShot Activity activity View view activity.getWindow .getDecorView view.setDrawingCacheEnabled true view.buildDrawingCache.. Bitmap b1 view.getDrawingCache Rect frame new Rect activity.getWindow .getDecorView .getWindowVisibleDisplayFrame frame int statusBarHeight.. frame int statusBarHeight frame.top int width activity.getWindowManager .getDefaultDisplay .getWidth int height activity.getWindowManager..

ActionBar in a DialogFragment

http://stackoverflow.com/questions/11425020/actionbar-in-a-dialogfragment

activity.requestWindowFeature Window.FEATURE_ACTION_BAR activity.getWindow .setFlags WindowManager.LayoutParams.FLAG_DIM_BEHIND WindowManager.LayoutParams.FLAG_DIM_BEHIND.. LayoutParams params activity.getWindow .getAttributes params.height 850 fixed height params.width 850.. 850 fixed width params.alpha 1.0f params.dimAmount 0.5f activity.getWindow .setAttributes android.view.WindowManager.LayoutParams params..

How to check visibility of software keyboard in Android?

http://stackoverflow.com/questions/2150078/how-to-check-visibility-of-software-keyboard-in-android

Activity activity Activity getContext Rect rect new Rect activity.getWindow .getDecorView .getWindowVisibleDisplayFrame rect int statusBarHeight.. rect int statusBarHeight rect.top int screenHeight activity.getWindowManager .getDefaultDisplay .getHeight int diff screenHeight statusBarHeight..

Android 3.1 soft keyboard in fullscreen mode

http://stackoverflow.com/questions/6647008/android-3-1-soft-keyboard-in-fullscreen-mode

android keyboard share improve this question Try activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN.. To hide or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE.. WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE..

android:take screenshot and share it

http://stackoverflow.com/questions/10296711/androidtake-screenshot-and-share-it

a sdcard xx.png savePic takeScreenShot a b private static Bitmap takeScreenShot Activity activity View view activity.getWindow .getDecorView view.setDrawingCacheEnabled true view.buildDrawingCache Bitmap b1 view.getDrawingCache Rect frame new Rect.. view.setDrawingCacheEnabled true view.buildDrawingCache Bitmap b1 view.getDrawingCache Rect frame new Rect activity.getWindow .getDecorView .getWindowVisibleDisplayFrame frame int statusBarHeight frame.top int width activity.getWindowManager .getDefaultDisplay.. new Rect activity.getWindow .getDecorView .getWindowVisibleDisplayFrame frame int statusBarHeight frame.top int width activity.getWindowManager .getDefaultDisplay .getWidth int height activity.getWindowManager .getDefaultDisplay .getHeight Bitmap b Bitmap.createBitmap..

ActionBar in a DialogFragment

http://stackoverflow.com/questions/11425020/actionbar-in-a-dialogfragment

@style PopupTheme on for the chosen activity on the manifest activity.requestWindowFeature Window.FEATURE_ACTION_BAR activity.getWindow .setFlags WindowManager.LayoutParams.FLAG_DIM_BEHIND WindowManager.LayoutParams.FLAG_DIM_BEHIND LayoutParams params activity.getWindow.. .setFlags WindowManager.LayoutParams.FLAG_DIM_BEHIND WindowManager.LayoutParams.FLAG_DIM_BEHIND LayoutParams params activity.getWindow .getAttributes params.height 850 fixed height params.width 850 fixed width params.alpha 1.0f params.dimAmount 0.5f activity.getWindow.. .getAttributes params.height 850 fixed height params.width 850 fixed width params.alpha 1.0f params.dimAmount 0.5f activity.getWindow .setAttributes android.view.WindowManager.LayoutParams params setContentView R.layout.activity_main share improve this..

How to check visibility of software keyboard in Android?

http://stackoverflow.com/questions/2150078/how-to-check-visibility-of-software-keyboard-in-android

int height MeasureSpec.getSize heightMeasureSpec Activity activity Activity getContext Rect rect new Rect activity.getWindow .getDecorView .getWindowVisibleDisplayFrame rect int statusBarHeight rect.top int screenHeight activity.getWindowManager.. Rect activity.getWindow .getDecorView .getWindowVisibleDisplayFrame rect int statusBarHeight rect.top int screenHeight activity.getWindowManager .getDefaultDisplay .getHeight int diff screenHeight statusBarHeight height if listener null listener.onSoftKeyboardShown..

Android 3.1 soft keyboard in fullscreen mode

http://stackoverflow.com/questions/6647008/android-3-1-soft-keyboard-in-fullscreen-mode

show or forcing the Android keyboard in fullscreen mode Thanks android keyboard share improve this question Try activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN To hide or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE.. question Try activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN To hide or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE.. To hide or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE or activity.getWindow .setSoftInputMode WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE One of these should help you share improve..