如果我的活动中有代码,我就有这个:
Bundle bundle = getIntent().getExtras();
if (bundle.getBoolean("fourthSection")){
mTitle = getString(R.string.title_section4);
this.setContentView(R.layout.stats);
new uq().execute();
otherLayout = true;
}
如何获取发送意图的活动的名称,并仅在第一个活动的名称等于"个人资料"?
时应用上述代码答案 0 :(得分:0)
<include layout="@layout/your_footer">
班级拨打电话,然后添加Profile
,表示该来自boolean
班级。Profile
,用于识别来自哪个来电。<强>实施强>
在int
班级
Profile
另一个或目的地类
在Intent intent = new Intent(this, SOME_ACITIVITY.class)
intent.putExtra(ANY_KEY, true); // Set it true for Profile class
startActivity(intent);
方法
onCreate()