- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我在这里发布的第一个问题,所以我希望我已经彻底、清楚地解释了我遇到的问题。任何/所有帮助将不胜感激。
这是我正在处理的 java 文件:
MainActivity.java
public class MainActivity extends AppCompatActivity {
ImageButton name1Button;
ImageButton name2Button;
ImageButton name3Button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); // Layout contains 3 ImageButtons "@+id/imageButton1", "@+id/imageButton2" and "@+id/imageButton3"
name1Button = (ImageButton) findViewById(R.id.imageButton1);
name2Button = (ImageButton) findViewById(R.id.imageButton2);
name3Button = (ImageButton) findViewById(R.id.imageButton3);
}
public void onChangeScreen(View view) {
Intent changeScreenIntent = new Intent(this, SecondActivity.class);
if(view == name1Button) {
changeScreenIntent.putExtra("Name", "name1");
} else if (view == name2Button) {
changeScreenIntent.putExtra("Name", "name2");
} else if (view == name3Button) {
changeScreenIntent.putExtra("Name", "name3");
} else {
changeScreenIntent.putExtra("Name", "Other");
}
startActivity(changeScreenIntent);
}
}
SecondActivity.java
public class SecondActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_layout); //Contains a TextView "@+id/textViewName"
Intent myIntent = getIntent();
String strName = myIntent.getExtras().getString("Name"); //Set strName to the parsed name ("name1", "name2" or "name3")
TextView myTextView = (TextView) findViewById(R.id.textViewName);
myTextView.setText(strName); //Sets the name parsed to a TextView //Setting the texts of the displayed TextView "@+id/textViewName" to the value of strName. This CORRECTLY shows the parsed name.
if(strName == "name1") { // Never true, even though the value of strName is "name1"
//Do thing if certain button clicked
Toast.makeText(this, "You selected name1", Toast.LENGTH_SHORT).show();
} else {
//Do other thing if non-specified button clicked
Toast.makeText(this, "Something went wrong", Toast.LENGTH_SHORT).show();
}
}
}
其含义如下:
onChangeScreen
。onChangeScreen
,会将不同的值(字符串)传递给 SecondActivity。changeScreenIntent.putExtra()
),将调用第二个 Activity。.putExtra()
传递的值。这就是问题出现的地方。比较传入 SecondActivity 的字符串的 if 语句“显然”不等于该字符串的值(但显示的 TextView
显示该字符串)。因此 if 语句中的代码(替换为 Toast)永远不会被使用。
最佳答案
始终用于比较字符串
if(strName.equals("name1"))
Toast.makeText(this, "You selected name1", Toast.LENGTH_SHORT).show();
} else {
//Do other thing if non-specified button clicked
Toast.makeText(this, "Something went wrong", Toast.LENGTH_SHORT).show();
}
使用 equals() 而不是字符串的 == ......
享受编码......
关于java - Intent Extra 不等于 if 语句中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36771138/
我正在将 ansible 合并到我们的内部 RHN 卫星中。我有来自 Red Hat 的完全更新的 RHEL 7 基础 repo 、附加、补充、可选和 RHN 工具。当我们需要它们时,我还会将选定的包
我尝试将一些值发送到另一个 Activity 。 recyclerView.addOnItemTouchListener(new RecyclerTouchListener(getApplicatio
我有这个代码: Intent intent = new Intent(); intent.setAction(Intent.ACTION_PICK); intent.s
几天前,我一直在努力寻找一种方法来为我的闹钟使用自定义 Intent 。虽然我得到了明确的答案,但我必须根据一些唯一的 ID 来定制 Intent,例如。 setAction()还是有一些问题。 我这
通知正在提供旧值。我阅读了 stackoverflow 链接,但仍然不适合我: Notification passes old Intent Extras 我有一个 Activity A。当我在 Ac
我想写以下内容: result = [] for x in list(range(10)): if x%2 != 0: for a in [1,2]:
我在使用 mysql 5.5.12 时遇到了 Amazon RDS 的 IO 性能问题。有 2 种实例类型相似且价格接近: 超大数据库实例:15 GB 内存、8 个 ECU(4 个虚拟核心,每个 2
这里是 Android 的新手,我正在与一位资深人士就 bundle 和 Intent 进行辩论。这就是我一直在做的...... Intent intent = new Intent(this, Ta
我使用的是MinGW+MSYS, 我添加了 extra-include-dirs、extra-lib-dirs,但似乎没有任何东西可以帮助 cabal 找到 PCRE 库。以下是我尝试过的一些命令行,
我已将 CVS 中的一个模块 check out 到新安装的 Windows 7 计算机上。病毒扫描程序尚未安装。 后来,当我尝试进行更新时,收到以下错误消息: 无法将文件 CVS/Entries.E
Alpine镜像中的telnet在3.7版本后被转移至busybox-extras包中,需要使用apk单独安装。 现象 Alpine版本为3.8, 不再有指向busybox的telent
对lazy="extra"究竟能做什么,有没有很好的解释? 我看过的所有帖子都只是重复了一个事实,即它会引用 MyObject.ItsCollection.Count进入 select count(*
这个问题已经有答案了: Two semicolons inside a for-loop parentheses (4 个回答) Endless loop in C/C++ [closed] (12
我的包为包含的额外内容返回空字符串。不是 NPE,是实际的“空”值。关于为什么会发生这种情况的任何想法? 新 bundle String u = nul
在 es6 中,以下似乎是有效代码: function test(a1,{a=1,b=2} = {},) {} 注意函数参数中额外的,。我不确定这是否是一个错误,因为这个额外的 , 仅适用于解构分配。
我正在查看一个包含 .myClass a.extra{...} 和 .myClass a.extra:hover{...} 的 css 模板“额外”是什么意思? 最佳答案 extra 是类名。 因为你
我来自 Web 开发的前端世界,我们非常努力地尝试限制发出的 HTTP 请求的数量(通过合并 css、js 文件、图像等)。 对于数据库连接 (MySQL),显然您不希望有不必要的连接,但作为一般规则
问题是关于包含不必要的 header 以避免在子文件中多次调用它。这是场景,我有几个文件: srlogger.h srinterface.h srinterface.cc #include #inc
我有一个程序表现出奇怪的行为 #include #include using namespace std; class man{ int i ; public:
本文整理了Java中org.threeten.extra.YearQuarter类的一些代码示例,展示了YearQuarter类的具体用法。这些代码示例主要来源于Github/Stackoverflo
我是一名优秀的程序员,十分优秀!