我正在使用最新的SDK在http://developer.android.com上完成MyFirstApp教程。
我创建了一个4.1应用程序并设置我的模拟器,LCD密度为213,VM应用程序堆为48,设备RAM大小为512.分辨率为720x1280。
当我第一次得到这个时,我在模拟器上闪现了“Android”。
我注意到我的布局main.xml默认没有创建,所以我自己在res / layouts中添加了它
我添加了以下main.xml和strings.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<EditText android:id="@+id/edit_message"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_width="0dp"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
<resources>
<string name="app_name">My First App</string>
<string name="edit_message">Enter a message</string>
<string name="button_send">Send</string>
</resources>
现在当我运行我的模拟器时,我只是得到一个黑屏。我的猜测是,我没有正确添加main.xml,或者我的xml文件中有错误。
答案 0 :(得分:2)
使用Activity onCreate()
方法中的以下语句将XML文件(main.xml)映射到Activity:
setContentView(R.layout.main);