gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:11:40 26 4
gpt4 key购买 nike

第一次使用显示指标时出现错误 “Link all references for a local rename (does not change references in other files)” 这样所有具有 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;"存在你应该删除

enter image description here

关于android - 链接本地重命名的所有引用(不更改其他文件中的引用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14341587/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com