我想禁用片段类中的后退按钮.onBackPressed()似乎没有在这个片段中工作.我怎么能禁用后退按钮?
这是我的示例代码:
public class Login extends Fragment {
public View onCreateView(LayoutInflater inflater, ViewGroup container,
,Bundle savedInstanceState) {
ViewGroup root = (ViewGroup) inflater.inflate(R.layout.login, null);
return root;
}
public void onBackPressed() {
}
}
Run Code Online (Sandbox Code Playgroud)