Lines Matching defs:feature

51     /** Flag for the "options panel" feature.  This is enabled by default. */
53 /** Flag for the "no title" feature, turning off the title at the top
56 /** Flag for the progress indicator feature */
66 /** Flag for custom title. You cannot combine this feature with other title features. */
78 * feature is requested along with {@link #FEATURE_ACTION_BAR} it will be layered over
126 * Max value used as a feature ID
304 * time onCreatePanelMenu() is called for this feature.
943 * will be available. You can not turn off a feature once it is requested.
1147 * Set the value for a drawable feature of this window, from a resource
1153 * @param featureId The desired drawable feature to change, defined as a
1160 * Set the value for a drawable feature of this window, from a URI. You
1169 * @param featureId The desired drawable feature to change. Features are
1176 * Set an explicit Drawable value for feature of this window. You must
1179 * @param featureId The desired drawable feature to change. Features are
1186 * Set a custom alpha value for the given drawable feature, controlling how
1189 * @param featureId The desired drawable feature to change. Features are
1197 * Set the integer value for a feature. The range of the value depends on
1198 * the feature being set. For {@link #FEATURE_PROGRESS}, it should go from
1201 * @param featureId The desired feature to change. Features are constants
1203 * @param value The value for the feature. The interpretation of this
1204 * value is feature-specific.
1284 * Return the feature bits that are enabled. This is the set of features
1290 * features by their feature ID.
1292 * @return int The feature bits.
1300 * Return the feature bits set by default on a window.
1319 * Query for the availability of a certain feature.
1321 * @param feature The feature ID to check
1322 * @return true if the feature is enabled, false otherwise.
1324 public boolean hasFeature(int feature) {
1325 return (getFeatures() & (1 << feature)) != 0;
1329 * Return the feature bits that are being implemented by this Window.
1333 * @return int The feature bits.