/**@class android.graphics.drawable.NinePatchDrawable @extends android.graphics.drawable.Drawable A resizeable bitmap, with stretchable areas that you define. This type of image is defined in a .png file with a special format. <div class="special reference"> <h3>Developer Guides</h3> <p>For more information about how to use a NinePatchDrawable, read the <a href="{@docRoot}guide/topics/graphics/2d-graphics.html#nine-patch"> Canvas and Drawables</a> developer guide. For information about creating a NinePatch image file using the draw9patch tool, see the <a href="{@docRoot}guide/developing/tools/draw9patch.html">Draw 9-patch</a> tool guide.</p></div> */ var NinePatchDrawable = { /**Set the density scale at which this drawable will be rendered. This method assumes the drawable will be rendered at the same density as the specified canvas. @param {Object {Canvas}} canvas The Canvas from which the density scale must be obtained. @see android.graphics.Bitmap#setDensity(int) @see android.graphics.Bitmap#getDensity() */ setTargetDensity : function( ) {}, /**Set the density scale at which this drawable will be rendered. @param {Object {DisplayMetrics}} metrics The DisplayMetrics indicating the density scale for this drawable. @see android.graphics.Bitmap#setDensity(int) @see android.graphics.Bitmap#getDensity() */ setTargetDensity : function( ) {}, /**Set the density at which this drawable will be rendered. @param {Number} density The density scale for this drawable. @see android.graphics.Bitmap#setDensity(int) @see android.graphics.Bitmap#getDensity() */ setTargetDensity : function( ) {}, /** */ draw : function( ) {}, /** */ getChangingConfigurations : function( ) {}, /** */ getPadding : function( ) {}, /** */ getOutline : function( ) {}, /** */ getOpticalInsets : function( ) {}, /** */ setAlpha : function( ) {}, /** */ getAlpha : function( ) {}, /** */ setColorFilter : function( ) {}, /** */ setTintList : function( ) {}, /** */ setTintBlendMode : function( ) {}, /** */ setDither : function( ) {}, /** */ setAutoMirrored : function( ) {}, /** */ isAutoMirrored : function( ) {}, /** */ setFilterBitmap : function( ) {}, /** */ isFilterBitmap : function( ) {}, /** */ inflate : function( ) {}, /** */ applyTheme : function( ) {}, /** */ canApplyTheme : function( ) {}, /** */ getPaint : function( ) {}, /** */ getIntrinsicWidth : function( ) {}, /** */ getIntrinsicHeight : function( ) {}, /** */ getOpacity : function( ) {}, /** */ getTransparentRegion : function( ) {}, /** */ getConstantState : function( ) {}, /** */ mutate : function( ) {}, /** @hide */ clearMutated : function( ) {}, /** */ isStateful : function( ) {}, /** @hide */ hasFocusStateSpecified : function( ) {}, };