我正在使用Android Studio创建应用,当我尝试使用Genymotion运行它时,它并没有显示出来。主屏幕显示但不是应用程序本身。
Genymotion屏幕
当我按下run并选择设备时,我会在我的.Java文件底部收到错误消息
private const MIN_ZOOM:Number = 1;
private const MAX_ZOOM:Number = 1.5;
private function onZoom(e:TransformGestureEvent):void {
var scale:Number = Math.min(e.scaleX, e.scaleY);
escenario.scaleX *= scale;
// Check if the scale is between the min and max parameters
if(escenario.scaleX > MAX_ZOOM) escenario.scaleX = MAX_ZOOM;
if(escenario.scaleX < MIN_ZOOM) escenario.scaleX = MIN_ZOOM;
escenario.scaleY = escenario.scaleX;
// Check is the MovieClip is inside the Stage bounds
if(escenario.x > 0) escenario.x = 0;
if(escenario.y > 0) escenario.y = 0;
if(escenario.x + escenario.width < escenario.stage.stageWidth) escenario.x = escenario.stage.stageWidth - escenario.width;
if(escenario.y + escenario.height < escenario.stage.stageHeight) escenario.y = escenario.stage.stageHeight - escenario.height;
}
代码有问题吗?
答案 0 :(得分:0)
您的应用没有出现&#34;在Genymotion,因为它不会建立。我猜你在课堂上粘贴了一堆代码,你不知道它在哪里?
您的OnClickListener()
包含一堆不应该的方法。
例如,您有第二个onCreate
...并不是因为它位于OnClickListener
内而会运行该方法,但它绝对不会被@Override
注释,这就是那些错误告诉你的。
所以,回答你的问题
代码有问题吗?
是的,这是您的代码的正确版本
public class HomeActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
Button panicAttacks = (Button) findViewById(R.id.button);
panicAttacks.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(HomeActivity.this, HelpPanicking.class);
startActivity(intent);
}
});
}
@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_home, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 1 :(得分:-1)
如果已设置
,请检查清单category android:name="android.intent.category.DEFAULT"
第一次活动。
必须是
category android:name="android.intent.category.LAUNCHER"
如果您没有启动器活动,则会安装该应用但不会显示..