模拟器未显示XML内容

时间:2012-07-08 09:08:52

标签: android xml eclipse

我一直在阅读Google's android tutorial并且我遇到了问题...
在教程中他们解释了XML元素(EditText和Button),最后他们说如何调试程序以查看按钮+文本字段 问题是,模拟器没有显示它们......只是一个黑屏 我甚至尝试将此行添加到onCreate函数 -

System.out.println("Hello World!");

但仍然是模拟器只显示黑屏.. 这是.java主文件 - http://pastebin.com/G5J9YjNe

XML文件(我提到了什么代码是什么文件) - http://pastebin.com/VnRwAfMW

我该怎么办?

非常感谢给每个有帮助的人

1 个答案:

答案 0 :(得分:0)

System.out.println("Hello World!");

不会在屏幕上打印任何内容。它可以在Consol上看到。我尝试下面的代码,并为我工作。

//主要活动     公共类MainActivity扩展了Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.kuchbhi);
        System.out.println("Hello World!");
    }

布局/.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="horizontal" >

    <EditText android:id="@+id/text_message"
    android:layout_weight="1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:hint="enter text" />

    <Button android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:text="Send" />

    </LinearLayout>

清单文件..

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name="MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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


    </application>

</manifest>

试试这段代码,让我知道你看到了什么。

我尝试了你的源代码,它对我来说很好。见屏幕

your app screen