微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android – 链接本地重命名的所有引用(不更改其他文件中的引用)

使用显示指标第一次出现错误链接本地重命名的所有引用(不更改其他文件中的引用)”,以便所有具有id显示id的行都不会被解析.我将放置代码.帮助我.

public void onConfigurationChanged(Configuration newConfig) {
            super.onConfigurationChanged(newConfig);
            try{
                emailForConfigChanges = emailTextBox.getText().toString().trim();
                passwordForConfigChanges = passwordTextBox.getText().toString().trim();

                displayMetrics displayMetrics = new displayMetrics();
                getwindowManager().getDefaultdisplay().getMetrics(displayMetrics);
                switch(displayMetrics.densityDpi){ 
                    case displayMetrics.DENSITY_LOW:
                        setContentView(R.layout.login_small);
*showing error in the above line "Link all references for a local rename (does not change references   in other files)"*

                        break; 
                    default:
                        setContentView(R.layout.login);
                }
            } catch(Exception e){
                e.printstacktrace();
            }

            getwindow().setSoftInputMode(WindowManager.LayoutParams.soFT_INPUT_STATE_ALWAYS_HIDDEN);
            ImageButton loginButton = (ImageButton) findViewById(R.id.loginButton);
            loginButton.setonClickListener(this);
            ImageButton registerOrangeButton = (ImageButton) findViewById(R.id.registerOrangeButton);
            registerOrangeButton.setonClickListener(this);
            TextView forgotPasswordText = (TextView) findViewById(R.id.forgotPasswordText);
            forgotPasswordText.setonClickListener(this);

            passwordTextBox = (EditText) findViewById(R.id.passwordLogin);
            passwordTextBox.setText(passwordForConfigChanges);
            passwordTextBox.setonKeyListener(this);
            emailTextBox = (EditText) findViewById(R.id.emailLogin);
            emailTextBox.setText(emailForConfigChanges);
            emailTextBox.setonKeyListener(this);

解决方法

请检查导入部分

如果这一行 – > “import android.R;”存在你应该删除

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐