|
|
@ -21,6 +21,7 @@ import androidx.appcompat.app.AlertDialog; |
|
|
|
import androidx.appcompat.widget.AppCompatButton; |
|
|
|
import androidx.appcompat.widget.AppCompatImageView; |
|
|
|
import androidx.fragment.app.Fragment; |
|
|
|
import androidx.navigation.NavDirections; |
|
|
|
import androidx.navigation.fragment.NavHostFragment; |
|
|
|
import androidx.recyclerview.widget.LinearLayoutManager; |
|
|
|
import androidx.recyclerview.widget.RecyclerView; |
|
|
@ -92,9 +93,7 @@ public class DirectMessageSettingsFragment extends Fragment implements SwipeRefr |
|
|
|
final Object tag = v.getTag(); |
|
|
|
if (tag instanceof ProfileModel) { |
|
|
|
ProfileModel model = (ProfileModel) tag; |
|
|
|
final ProfileNavGraphDirections.ActionGlobalProfileFragment action = DirectMessageThreadFragmentDirections |
|
|
|
.actionGlobalProfileFragment(); |
|
|
|
action.setUsername("@" + model.getUsername()); |
|
|
|
final NavDirections action = DirectMessageThreadFragmentDirections.actionGlobalProfileFragment("@" + model.getUsername()); |
|
|
|
NavHostFragment.findNavController(this).navigate(action); |
|
|
|
} |
|
|
|
}; |
|
|
@ -111,9 +110,7 @@ public class DirectMessageSettingsFragment extends Fragment implements SwipeRefr |
|
|
|
}); |
|
|
|
final DialogInterface.OnClickListener clickListener = (d, w) -> { |
|
|
|
if (w == 0) { |
|
|
|
final ProfileNavGraphDirections.ActionGlobalProfileFragment action = DirectMessageThreadFragmentDirections |
|
|
|
.actionGlobalProfileFragment(); |
|
|
|
action.setUsername("@" + model.getUsername()); |
|
|
|
final NavDirections action = DirectMessageThreadFragmentDirections.actionGlobalProfileFragment("@" + model.getUsername()); |
|
|
|
NavHostFragment.findNavController(this).navigate(action); |
|
|
|
} else if (w == 1) { |
|
|
|
new ChangeSettings(titleText.getText().toString()).execute("remove_users", model.getId()); |
|
|
|