1. 간단한 스낵바 Source: http://overimagine.tistory.com/16
Snackbar.make(view, “Hi! I’m Snackbar!”, Snackbar.LENGTH_LONG).setAction(“Action”, null).show();
Snackbar.make(view, “Hi! I’m Snackbar!”, Snackbar.LENGTH_LONG).show();
2. 스낵바 예제 Source: http://www.androidhive.info/2015/09/android-material-design-snackbar-example/
Snackbar snackbar = Snackbar
.make(relativeayout, "no internet connection", Snackbar.LENGTH_INDEFINITE)
.setAction("retry", new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});
// Changing message text color
snackbar.setActionTextColor(Color.RED);
// Changing action button text color
View sbView = snackbar.getView();
TextView textView = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
textView.setTextColor(Color.YELLOW);
snackbar.show();
3. Top Snacker 라이브러리
https://github.com/AndreiD/TSnackBar
4. 스낵바 위로 위치하게 하기
Snackbar snack = Snackbar.make(findViewById(android.R.id.content), "Had a snack at Snackbar", Snackbar.LENGTH_LONG);
View view = snack.getView();
FrameLayout.LayoutParams params =(FrameLayout.LayoutParams)view.getLayoutParams();
params.gravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP;
// calculate actionbar height
TypedValue tv = new TypedValue();
int actionBarHeight=0;
if (getTheme().resolveAttribute(R.attr.actionBarSize, tv, true))
{
actionBarHeight = TypedValue.complexToDimensionPixelSize(tv.data,getResources().getDisplayMetrics());
}
// set margin
params.setMargins(0, actionBarHeight, 0, 0);
view.setLayoutParams(params);
snack.show();