Home | History | Annotate | Download | only in view

Lines Matching refs:feature

43     /** Flag for the "options panel" feature.  This is enabled by default. */
45 /** Flag for the "no title" feature, turning off the title at the top
48 /** Flag for the progress indicator feature */
58 /** Flag for custom title. You cannot combine this feature with other title features. */
70 * feature is requested along with {@link #FEATURE_ACTION_BAR} it will be layered over
94 * Max value used as a feature ID
253 * time onCreatePanelMenu() is called for this feature.
853 * will be available. You can not turn off a feature once it is requested.
1025 * Set the value for a drawable feature of this window, from a resource
1031 * @param featureId The desired drawable feature to change, defined as a
1038 * Set the value for a drawable feature of this window, from a URI. You
1047 * @param featureId The desired drawable feature to change. Features are
1054 * Set an explicit Drawable value for feature of this window. You must
1057 * @param featureId The desired drawable feature to change.
1064 * Set a custom alpha value for the given drawale feature, controlling how
1067 * @param featureId The desired drawable feature to change.
1075 * Set the integer value for a feature. The range of the value depends on
1076 * the feature being set. For FEATURE_PROGRESSS, it should go from 0 to
1079 * @param featureId The desired feature to change.
1081 * @param value The value for the feature. The interpretation of this
1082 * value is feature-specific.
1162 * Return the feature bits that are enabled. This is the set of features
1168 * features by their feature ID.
1170 * @return int The feature bits.
1178 * Query for the availability of a certain feature.
1180 * @param feature The feature ID to check
1181 * @return true if the feature is enabled, false otherwise.
1183 public boolean hasFeature(int feature) {
1184 return (getFeatures() & (1 << feature)) != 0;
1188 * Return the feature bits that are being implemented by this Window.
1192 * @return int The feature bits.