android Programming Glossary: gravity.top
Having application running above other app http://stackoverflow.com/questions/10266959/having-application-running-above-other-app WindowManager.LayoutParams.TYPE_SYSTEM_ALERT param.gravity Gravity.TOP Gravity.LEFT param.width parent null LayoutParams.WRAP_CONTENT..
show the information in the middle of the call http://stackoverflow.com/questions/10683841/show-the-information-in-the-middle-of-the-call PixelFormat.TRANSLUCENT final Context ct c params.gravity Gravity.TOP params.setTitle Testing LinearLayout ly new LinearLayout c ly.setOrientation..
Create a UI or a widget that sees on top of all Application in Android? http://stackoverflow.com/questions/11498366/create-a-ui-or-a-widget-that-sees-on-top-of-all-application-in-android ll_lp.gravity Gravity.CLIP_HORIZONTAL Gravity.TOP This one is necessary. ll_lp.type WindowManager.LayoutParams.TYPE_SYSTEM_ALERT..
Vertical (rotated) label in Android http://stackoverflow.com/questions/1258275/vertical-rotated-label-in-android setGravity gravity Gravity.HORIZONTAL_GRAVITY_MASK Gravity.TOP topDown false else topDown true @Override protected void onMeasure.. setGravity gravity Gravity.HORIZONTAL_GRAVITY_MASK Gravity.TOP topDown false else topDown true @Override protected void onMeasure..
What APIs in Android is Facebook using to create Chat Heads? http://stackoverflow.com/questions/15975988/what-apis-in-android-is-facebook-using-to-create-chat-heads PixelFormat.TRANSLUCENT params.gravity Gravity.TOP Gravity.LEFT params.x 0 params.y 100 windowManager.addView chatHead..
How to align the text to top of TextView? http://stackoverflow.com/questions/1747196/how-to-align-the-text-to-top-of-textview false remove the font padding setGravity getGravity Gravity.TOP make sure that the gravity is set to the top This is where the..
how to change position of Toast in android? http://stackoverflow.com/questions/2506876/how-to-change-position-of-toast-in-android corner you can set the gravity like this toast.setGravity Gravity.TOP Gravity.LEFT 0 0 If you want to nudge the position to the right..
Android TabHost - Activities within each tab http://stackoverflow.com/questions/3103062/android-tabhost-activities-within-each-tab txtTabInfo.setGravity Gravity.CENTER_HORIZONTAL Gravity.TOP txtTabInfo.setHeight 39 spec tabs.newTabSpec tabInfo spec.setContent.. txtTabMap.setGravity Gravity.CENTER_HORIZONTAL Gravity.TOP txtTabMap.setHeight 39 spec tabs.newTabSpec tabMap spec.setContent..
Creating a custom dialog in Android http://stackoverflow.com/questions/3399667/creating-a-custom-dialog-in-android lp.x 100 lp.y 100 lp.width 100 lp.height 200 lp.gravity Gravity.TOP Gravity.LEFT lp.dimAmount 0 lp.flags LayoutParams.FLAG_LAYOUT_NO_LIMITS..
creating a system overlay (always on top) button in android http://stackoverflow.com/questions/4481226/creating-a-system-overlay-always-on-top-button-in-android PixelFormat.TRANSLUCENT params.gravity Gravity.RIGHT Gravity.TOP params.setTitle Load Average WindowManager wm WindowManager.. PixelFormat.TRANSLUCENT params.gravity Gravity.RIGHT Gravity.TOP params.setTitle Load Average WindowManager wm WindowManager..
Show AlertDialog in any position of the screen http://stackoverflow.com/questions/5469005/show-alertdialog-in-any-position-of-the-screen wmlp dialog.getWindow .getAttributes wmlp.gravity Gravity.TOP Gravity.LEFT wmlp.x 100 x position wmlp.y 100 y position dialog.show..
How to display a fullscreen TYPE_SYSTEM_ALERT window? http://stackoverflow.com/questions/6371432/how-to-display-a-fullscreen-type-system-alert-window PixelFormat.TRANSLUCENT params.gravity Gravity.RIGHT Gravity.TOP mWindowManager.addView mOverlayView params Any ideas Thank you..
How to show PopupWindow at special location? http://stackoverflow.com/questions/7450959/how-to-show-popupwindow-at-special-location popup in the relevant location popup.showAtLocation parent Gravity.TOP Gravity.LEFT location.left location.bottom This would show the..
How to set layout_gravity programmaticaly? http://stackoverflow.com/questions/8049620/how-to-set-layout-gravity-programmaticaly LayoutParams.FILL_PARENT params.weight 1.0f params.gravity Gravity.TOP button.setLayoutParams params For gravity values and how to..
Custom date picker with months and years http://stackoverflow.com/questions/9236389/custom-date-picker-with-months-and-years View makeView TextView t new TextView this t.setGravity Gravity.TOP Gravity.CENTER_HORIZONTAL t.setTextSize 36 return t xml version..
Draw text vertically on canvas http://stackoverflow.com/questions/9262494/draw-text-vertically-on-canvas setGravity gravity Gravity.HORIZONTAL_GRAVITY_MASK Gravity.TOP topDown false else topDown true @Override protected void onMeasure..
Having application running above other app http://stackoverflow.com/questions/10266959/having-application-running-above-other-app view param.format PixelFormat.RGBA_8888 param.type WindowManager.LayoutParams.TYPE_SYSTEM_ALERT param.gravity Gravity.TOP Gravity.LEFT param.width parent null LayoutParams.WRAP_CONTENT view.getLayoutParams .width param.height parent null LayoutParams.WRAP_CONTENT..
show the information in the middle of the call http://stackoverflow.com/questions/10683841/show-the-information-in-the-middle-of-the-call params.width LayoutParams.WRAP_CONTENT params.format PixelFormat.TRANSLUCENT final Context ct c params.gravity Gravity.TOP params.setTitle Testing LinearLayout ly new LinearLayout c ly.setOrientation LinearLayout.VERTICAL Button inviteButton new..
Create a UI or a widget that sees on top of all Application in Android? http://stackoverflow.com/questions/11498366/create-a-ui-or-a-widget-that-sees-on-top-of-all-application-in-android ll_lp.width WindowManager.LayoutParams.FILL_PARENT ll_lp.gravity Gravity.CLIP_HORIZONTAL Gravity.TOP This one is necessary. ll_lp.type WindowManager.LayoutParams.TYPE_SYSTEM_ALERT Play around with these two. ll_lp.flags WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE..
Vertical (rotated) label in Android http://stackoverflow.com/questions/1258275/vertical-rotated-label-in-android gravity gravity Gravity.VERTICAL_GRAVITY_MASK Gravity.BOTTOM setGravity gravity Gravity.HORIZONTAL_GRAVITY_MASK Gravity.TOP topDown false else topDown true @Override protected void onMeasure int widthMeasureSpec int heightMeasureSpec super.onMeasure.. gravity gravity Gravity.VERTICAL_GRAVITY_MASK Gravity.BOTTOM setGravity gravity Gravity.HORIZONTAL_GRAVITY_MASK Gravity.TOP topDown false else topDown true @Override protected void onMeasure int widthMeasureSpec int heightMeasureSpec super.onMeasure..
What APIs in Android is Facebook using to create Chat Heads? http://stackoverflow.com/questions/15975988/what-apis-in-android-is-facebook-using-to-create-chat-heads WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE PixelFormat.TRANSLUCENT params.gravity Gravity.TOP Gravity.LEFT params.x 0 params.y 100 windowManager.addView chatHead params @Override public void onDestroy super.onDestroy..
How to align the text to top of TextView? http://stackoverflow.com/questions/1747196/how-to-align-the-text-to-top-of-textview attrs int defStyle super context attrs setIncludeFontPadding false remove the font padding setGravity getGravity Gravity.TOP make sure that the gravity is set to the top This is where the magic happens @Override protected void onDraw Canvas canvas..
how to change position of Toast in android? http://stackoverflow.com/questions/2506876/how-to-change-position-of-toast-in-android if you decide that the toast should appear in the top left corner you can set the gravity like this toast.setGravity Gravity.TOP Gravity.LEFT 0 0 If you want to nudge the position to the right increase the value of the second parameter. To nudge it..
Android TabHost - Activities within each tab http://stackoverflow.com/questions/3103062/android-tabhost-activities-within-each-tab txtTabInfo.setTextColor Color.DKGRAY txtTabInfo.setGravity Gravity.CENTER_HORIZONTAL Gravity.TOP txtTabInfo.setHeight 39 spec tabs.newTabSpec tabInfo spec.setContent R.id.tabInfo spec.setIndicator txtTabInfo tabs.addTab.. txtTabMap.setTextColor Color.DKGRAY txtTabMap.setGravity Gravity.CENTER_HORIZONTAL Gravity.TOP txtTabMap.setHeight 39 spec tabs.newTabSpec tabMap spec.setContent R.id.tabMap spec.setIndicator txtTabMap tabs.addTab spec..
Creating a custom dialog in Android http://stackoverflow.com/questions/3399667/creating-a-custom-dialog-in-android LayoutParams lp dialog.getWindow .getAttributes lp.x 100 lp.y 100 lp.width 100 lp.height 200 lp.gravity Gravity.TOP Gravity.LEFT lp.dimAmount 0 lp.flags LayoutParams.FLAG_LAYOUT_NO_LIMITS LayoutParams.FLAG_NOT_TOUCH_MODAL dialog.getWindow..
creating a system overlay (always on top) button in android http://stackoverflow.com/questions/4481226/creating-a-system-overlay-always-on-top-button-in-android WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE PixelFormat.TRANSLUCENT params.gravity Gravity.RIGHT Gravity.TOP params.setTitle Load Average WindowManager wm WindowManager getSystemService WINDOW_SERVICE wm.addView mView params @Override.. WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH PixelFormat.TRANSLUCENT params.gravity Gravity.RIGHT Gravity.TOP params.setTitle Load Average WindowManager wm WindowManager getSystemService WINDOW_SERVICE wm.addView mView params Now..
Show AlertDialog in any position of the screen http://stackoverflow.com/questions/5469005/show-alertdialog-in-any-position-of-the-screen Window.FEATURE_NO_TITLE WindowManager.LayoutParams wmlp dialog.getWindow .getAttributes wmlp.gravity Gravity.TOP Gravity.LEFT wmlp.x 100 x position wmlp.y 100 y position dialog.show Here x position's value is pixels from left to right...
How to display a fullscreen TYPE_SYSTEM_ALERT window? http://stackoverflow.com/questions/6371432/how-to-display-a-fullscreen-type-system-alert-window WindowManager.LayoutParams.FLAG_FULLSCREEN PixelFormat.TRANSLUCENT params.gravity Gravity.RIGHT Gravity.TOP mWindowManager.addView mOverlayView params Any ideas Thank you android android layout share improve this question I..
How to show PopupWindow at special location? http://stackoverflow.com/questions/7450959/how-to-show-popupwindow-at-special-location use code similar to what Ernesta suggested to stick the popup in the relevant location popup.showAtLocation parent Gravity.TOP Gravity.LEFT location.left location.bottom This would show the popup directly under the original view no guarantee that..
How to set layout_gravity programmaticaly? http://stackoverflow.com/questions/8049620/how-to-set-layout-gravity-programmaticaly
Custom date picker with months and years http://stackoverflow.com/questions/9236389/custom-date-picker-with-months-and-years 1 else cal.roll Calendar.MONTH 1 update return retrn public View makeView TextView t new TextView this t.setGravity Gravity.TOP Gravity.CENTER_HORIZONTAL t.setTextSize 36 return t xml version 1.0 encoding utf 8 RelativeLayout xmlns android http schemas.android.com..
Draw text vertically on canvas http://stackoverflow.com/questions/9262494/draw-text-vertically-on-canvas gravity gravity Gravity.VERTICAL_GRAVITY_MASK Gravity.BOTTOM setGravity gravity Gravity.HORIZONTAL_GRAVITY_MASK Gravity.TOP topDown false else topDown true @Override protected void onMeasure int widthMeasureSpec int heightMeasureSpec super.onMeasure..
|