use of android.support.design.widget.NavigationView in project material-components-android by material-components.
the class NavigationViewActions method setItemTextAppearance.
/** Sets item text appearance on the content of the navigation view. */
public static ViewAction setItemTextAppearance(@StyleRes final int resId) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isDisplayed();
}
@Override
public String getDescription() {
return "Set item text appearance";
}
@Override
public void perform(UiController uiController, View view) {
uiController.loopMainThreadUntilIdle();
NavigationView navigationView = (NavigationView) view;
navigationView.setItemTextAppearance(resId);
uiController.loopMainThreadUntilIdle();
}
};
}
use of android.support.design.widget.NavigationView in project material-components-android by material-components.
the class NavigationViewActions method setItemIconTintList.
/** Sets item icon tint list on the content of the navigation view. */
public static ViewAction setItemIconTintList(@Nullable final ColorStateList tint) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isDisplayed();
}
@Override
public String getDescription() {
return "Set item icon tint list";
}
@Override
public void perform(UiController uiController, View view) {
uiController.loopMainThreadUntilIdle();
NavigationView navigationView = (NavigationView) view;
navigationView.setItemIconTintList(tint);
uiController.loopMainThreadUntilIdle();
}
};
}
use of android.support.design.widget.NavigationView in project material-components-android by material-components.
the class NavigationViewActions method setIconForMenuItem.
/** Sets icon for the menu item of the navigation view. */
public static ViewAction setIconForMenuItem(@IdRes final int menuItemId, final Drawable iconDrawable) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isDisplayed();
}
@Override
public String getDescription() {
return "Set menu item icon";
}
@Override
public void perform(UiController uiController, View view) {
uiController.loopMainThreadUntilIdle();
NavigationView navigationView = (NavigationView) view;
navigationView.getMenu().findItem(menuItemId).setIcon(iconDrawable);
uiController.loopMainThreadUntilIdle();
}
};
}
use of android.support.design.widget.NavigationView in project material-components-android by material-components.
the class NavigationViewActions method inflateHeaderView.
/**
* Inflates a view from the specified layout ID and adds it as a header to the navigation view.
*/
public static ViewAction inflateHeaderView(@LayoutRes final int res) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isDisplayed();
}
@Override
public String getDescription() {
return "Inflate and add header view";
}
@Override
public void perform(UiController uiController, View view) {
uiController.loopMainThreadUntilIdle();
NavigationView navigationView = (NavigationView) view;
navigationView.inflateHeaderView(res);
uiController.loopMainThreadUntilIdle();
}
};
}
use of android.support.design.widget.NavigationView in project material-components-android by material-components.
the class NavigationViewActions method setItemBackground.
/** Sets item background on the content of the navigation view. */
public static ViewAction setItemBackground(@Nullable final Drawable itemBackground) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isDisplayed();
}
@Override
public String getDescription() {
return "Set item background";
}
@Override
public void perform(UiController uiController, View view) {
uiController.loopMainThreadUntilIdle();
NavigationView navigationView = (NavigationView) view;
navigationView.setItemBackground(itemBackground);
uiController.loopMainThreadUntilIdle();
}
};
}
Aggregations