Skip to content

TerryJung/BottomSheetDialogSample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BottomSheetDialogSample

View to Full Source

Bottom Sheet Dialog 만들기

Modal Bottom Sheet

Bottom Sheet 를 만드려면 안드로이드 디자인 서포트 라이브러리를 추가해야합니다.

build.gradle 에 아래와 같이 추가해주세요.

implementation 'com.android.support:design:27.1.0'

그리고 BottomSheetDialogFragment 를 상속받은 Dialog class 를 제작합니다.

public class BottomSheetDialog extends BottomSheetDialogFragment {
    public static BottomSheetDialog getInstance() { return new BottomSheetDialog(); }

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.bottom_sheet_layout, container,false);

        return view;
    }
}

BottomSheetDialog 오브젝트를 받아와서 아래와 같이 .show() 를 호출하면

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);



        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                BottomSheetDialog bottomSheetDialog = BottomSheetDialog.getInstance();
                bottomSheetDialog.show(getSupportFragmentManager(),"bottomSheet");
            }
        });

    }
}

About

Bottom Sheet Dialog Sample for android

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages