你好,我是初学者,当我启动Studio时,出现了一个空白的设计屏幕,而不是Hello World。无论我添加多少个textviews或按钮,空白的设计屏幕。请帮忙!
启动时的默认代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:0)
可能是因为您创建了更多活动,而这些活动正在显示。在您的Android清单中,在声明了活动的部分中,您应该将您的活动指定为主活动和启动器。像这样:
<activity
android:name=".MainActivity"
android:label="@string/MainActivity"
android:screenOrientation="portrait">
.
.
.
<!-- intent filter makes this activity the initial -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>