android模拟器没有显示登录页面数据

时间:2016-05-19 10:44:46

标签: android android-studio

enter image description here

如你所见:

enter image description here

模拟器已经很好地加载了,但只显示了应用程序名称,而不是我输入用户名,密码和登录按钮的登录页面输出。

1 个答案:

答案 0 :(得分:0)

试试此代码

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

确保您的登录活动在AndroidManifest.xml文件中设置为LAUNCHER活动

<activity
        android:name=".Login"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>