我正在尝试在Android Studio上运行我的第一个应用程序。模拟器可以正常启动,并且我可以单击我的应用程序图标-但是,尽管我将ImageView / Button属性放在activity_main中,但仅显示了附件图像中的屏幕(请参阅链接)。
这是我的清单。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.aneyth.myfirstapplication">
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我可以使图像在Android Studio的预览“设计”部分中很好地显示,但是当我运行它们时,它们不会出现在我的应用程序中。有什么想法吗?
-A