private void button_Click(object sender, System.EventArgs e)
        {
            if (_album == null)
            {
                return;
            }
            var index = _album.RandomSwap();

            _albumAdapter.NotifyItemChanged(0);
            _albumAdapter.NotifyItemChanged(index);
        }