小编Jel*_*ean的帖子

如何禁用android片段类中按下的后退按钮

我想禁用片段类中的后退按钮.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)

java eclipse android

14
推荐指数
6
解决办法
3万
查看次数

标签 统计

android ×1

eclipse ×1

java ×1