以下代码导致此输出,我无法看到我的文本视图。
我该怎么做才能看到我的文字视图?
它会离开这个闪屏...
提前谢谢。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="hello.agam"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".HelloAndroidActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello"/>
</activity>
</application>
</manifest>
我也试过这个:
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello, Android");
setContentView(tv);
答案 0 :(得分:6)
在加载应用之前,您需要等待模拟器启动。取决于你的电脑有多快2-5分钟。不要在部署之间关闭它以加快测试速度。
这是您加载时看到的Android启动启动画面。完成后你会看到一个普通的Android手机。