1 package android.app; 2 3 4 /** 5 * Internal interface used to control app-specific gender. 6 * 7 * <p>Use the {@link android.app.GrammarInflectionManager} class rather than going through 8 * this Binder interface directly. See {@link android.app.GrammarInflectionManager} for 9 * more complete documentation. 10 * 11 * @hide 12 */ 13 interface IGrammaticalInflectionManager { 14 15 /** 16 * Sets a specified app’s app-specific grammatical gender. 17 */ setRequestedApplicationGrammaticalGender(String appPackageName, int userId, int gender)18 void setRequestedApplicationGrammaticalGender(String appPackageName, int userId, int gender); 19 }