我用一个动作做了一个小应用程序,可以称之为两个片段。尽管android studio会标记每个findViewById(r.id.example)读数,这显然意味着有问题。只有“R”标记为红色。但我不明白有什么问题?特别是当应用程序运行良好并且编译不会出现任何错误时。
主要活动如下:
package silverbeach.meintieralter;
import android.app.Fragment;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.FragmentActivity;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends AppCompatActivity {
private FragmentOne fragmentOne;
private FragmentTwo fragmentTwo;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
//Fragmente ankündigen
fragmentOne = (FragmentOne) Fragment.instantiate(this, FragmentOne.class.getName(),null);
fragmentTwo = (FragmentTwo) Fragment.instantiate(this, FragmentTwo.class.getName(),null);
//Fragment 1 wird STANDARTMÄSSIG eingeblendet und ausgeführt
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.flFragmentContainer, fragmentOne);
fragmentTransaction.commit();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()){
case R.id.action_one:{
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.flFragmentContainer, fragmentOne);
fragmentTransaction.commit();
break;
}
case R.id.action_two:{
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.flFragmentContainer, fragmentTwo);
fragmentTransaction.commit();
break;
}
default:{
}
}
return super.onOptionsItemSelected(item);
}
}
下面是其中的一个片段:
package silverbeach.meintieralter;
import android.app.Fragment;
import android.content.Context;
import android.os.Bundle;
import android.os.Vibrator;
import android.support.annotation.Nullable;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;
import android.view.View.OnClickListener;
import static android.content.Context.VIBRATOR_SERVICE;
public class FragmentOne extends Fragment {
private TextView out;
private EditText alter;
private Spinner s;
private Button button;
private FloatingActionButton fab;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View layout = inflater.inflate(R.layout.fragment_one, null);
out = (TextView) layout.findViewById(R.id.out);
alter = (EditText) layout.findViewById(R.id.altereingabe);
s = (Spinner) layout.findViewById(R.id.spinner);
button = (Button) layout.findViewById(R.id.button);
fab = (FloatingActionButton) layout.findViewById(R.id.fab);
FloatingActionButton fab = (FloatingActionButton) layout.findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v) {
String text = s.getSelectedItem().toString();
int newage = 404;
double doublenewage = 4.04;
double doubleage;
int intage;
doubleage = Double.parseDouble(alter.getText().toString());
intage = (int) doubleage;
switch (text) {
case "Katze": {
switch (intage) {
default:
Snackbar.make(v, "Leider schon tot.", Snackbar.LENGTH_LONG).show();
out.setText("Leider schon tot.");
break;
}
if (intage <= 119)
Snackbar.make(v, "Du bist eine " + Integer.toString(newage) + " Jahre alte Katze.", Snackbar.LENGTH_LONG).show();
else {
double deadagecat;
deadagecat = intage * 0.283;
long dc = Math.round(deadagecat);
Snackbar.make(v, "Du bist höchstwahrscheinlich schon tot, aber theoretisch wärst du eine " + dc + "-Jährige Katze.", Snackbar.LENGTH_LONG).show();
}
}break;
case "Pferd": {
doublenewage = intage / 3.1;
long longpferdage = Math.round(doublenewage);
newage = (int) longpferdage;
if (newage < 31)
Snackbar.make(v, "Du bist ein " + Integer.toString(newage) + " Jahre altes Pferd", Snackbar.LENGTH_LONG).show();
else
Snackbar.make(v, "Du bist höchstwahrscheinlich schon tot, aber theoretisch wärst du ein " + newage + "-Jähriges Pferd.", Snackbar.LENGTH_LONG).show();
}break;
case "Hund": {
newage = intage / 7;
if (newage < 15)
Snackbar.make(v, "Du bist ein " + Integer.toString(newage) + " Jahre alter Hund.", Snackbar.LENGTH_LONG).show();
else
Snackbar.make(v, "Du bist höchstwahrscheinlich schon tot, aber theoretisch wärst du ein " + newage + "-Jähriger Hund.", Snackbar.LENGTH_LONG).show();
}break;
case "Meerschweinchen": {
newage = intage / 12;
if (newage < 8)
//out.setText("Du bist ein " + Integer.toString(newage) + " Jahre altes Meerie.");
Snackbar.make(v, "Du bist ein "+Integer.toString(newage)+" Jahre altes Meerie.", Snackbar.LENGTH_LONG).show();
else{
Snackbar.make(v, "Du bist höchstwahrscheinlich schon tot, aber theoretisch wärst du ein " + newage + "-Jähriges Meerie.", Snackbar.LENGTH_LONG).show();}
}break;
}
}
});
// tvText1 = (TextView) layout.findViewById(R.id.tvFragmentOne);
return layout;
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
//tvText1.setText("Ok View 1 wurde geändert.");
}
}
您只需进行重建,然后清理您的项目。这只是IDE本身的构建问题。给它一个建筑,一个清洁,然后你就可以开始了。希望这有帮助
我正在学习Spring靴,我没有任何关于这方面的经验。我正面临着两个错误,我试着解决了几个小时,但我还是无法解决它们。 第一个错误是“无法解析符号'annotation'”,第二个错误是“无法解析符号'webservlet'” 这是我第一天穿Spring靴。我想知道为什么在第一个错误中,即在第3行中,我只得到一个的错误,而语句中的其余单词似乎是死的,以及为什么在第8行中得到一个的错误,而在第3行中
当我在app gradle中添加或更新依赖项时,R类将不会在我的活动类中找到。
我对IntelliJ和Java都是新手。我正在学习多线程,遇到了Executors类。 所以我想测试一下,这里是我的代码示例。 但我得到一个错误:“无法解析符号'new fixedthreadpool'”。我试过“无效缓存并重新启动”,但没有帮助,我试过同步和重建项目,但也没有工作。 我不明白这个问题是从哪里来的,因为类执行器是导入的。此外,执行器的静态方法有自动完成功能。也许进口有问题,但如果是
一般来说,我对IntelliJ和Java都是新手。我试图学习多线程,我遇到了Executors类。 所以我想测试一下,这是我的代码示例。 但我得到一个错误:“无法解析符号‘newFixedThreadPool’”。我尝试了“使缓存失效并重新启动”,但并没有帮助,我尝试了同步和重建项目,但也不起作用。 我不明白这个问题是从哪里来的,因为类执行器是导入的。此外,执行器的静态方法也有自动补全。也许输入有
我已经执行了clean project,rebuild project,分析和检查代码,但它没有解决Android Studio中的“无法解决符号R”错误。 我该怎么解决这个?请帮帮我.
更改applicationId后,Android Studio无法从支持库中解析AppCompatActivity、DialogFragment、support V4片段和类似项目。 我尝试过: 清洁项目 重建项目 将项目与gradle文件同步 分离gradle项目同步并再次同步 使缓存失效并重新启动 删除项目并再次克隆 删除所有依赖并添加一个再见 将应用ID重命名为以前的名称 这是我的应用程序b