다음과 같이 정렬버튼을 누르면 이렇게 나타나는 창을 구현해보고자 한다. 1) 버튼 xml 한편 background와 textColor xml은 다음과 같다. background textColor 2) 버튼과 메뉴화면 구현 //변수 final int[] checkedItem = {0}; sortBtn = v.findViewById(R.id.sortBtn); sortBtn.setOnClickListener(view -> { AlertDialog.Builder alertDialog = new AlertDialog.Builder(getActivity()); //alertDialog.setIcon(R.drawable.image_logo); alertDialog.setTitle("정렬 기준을 선택하세요."); fi..