图形布局在Eclipse中显示,但在模拟器运行时不显示

问题描述 投票:1回答:1

我用Nexus仿真器开发了一个简单的Hello World示例。 模拟器运行,但是当我单击模拟器上的锁定按钮时,图形布局不会显示。

我的MainActivity.Java文件源代码在这里

package com.myNewProject.helloworld;

import android.os.Bundle;

import android.app.Activity;
import android.view.Menu;



public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

Activity_main.xml文件代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:contentDescription="@string/hello_world"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

我已经多次运行模拟器。

android layout android-emulator
1个回答
0
投票

您是否在android清单文件中启动了它。 您必须在那里启动。 谢谢这是一个例子。

      <intent-filter>
           <action android:name="android.intent.action.MAIN" />
           <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
© www.soinside.com 2019 - 2024. All rights reserved.