问题描述
我正在尝试对齐正确的作者并将其放在居中的标题之前。
class ProfileFragment : Fragment() {
val btnUpdate: Button = view.findViewById(R.id.btn_update)
btnUpdate.setonClickListener {
if(selectedImageUri != null){
uploadUserImage()
} else {
updateUserProfileData()
}
findNavController().navigate(R.id.action_nav_my_profile_to_nav_home)
}