运行android应用程序时无法显示textview

时间:2013-01-22 16:23:51

标签: android textview

我是新手android,我通过使用演示代码学习android,这是我的代码:

public class MainActivity extends Activity {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        TextView txt = (TextView) findViewById(R.id.txtHello);
        txt.setText("Hello World!");
    }
}

这是XML文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView
    android:id="@+id/txtHello"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    />
</LinearLayout>

但是当我运行这个项目时,我看不到这个textview,大家请帮助我:(,我不知道我的问题是什么? enter image description here

3 个答案:

答案 0 :(得分:2)

解决方案似乎很容易。

  • 将鼠标指针移到绿色锁上
  • 按住鼠标按钮
  • 在固定左按钮的同时移动鼠标,直到绿色锁定到达橙色圆圈。
  • 如果您在Eclipse中按下绿色播放按钮,您的应用将显示在您现在看到的屏幕下。 (称为锁定屏幕)

不要太粗鲁,但最好开始在http://developer.android.com上学习Android。你会发现它非常有用,尤其是http://developer.android.com/training/index.html部分。

答案 1 :(得分:1)

尝试解锁手机,然后运行您的应用程序。

答案 2 :(得分:1)

这是一个锁定屏幕,只需更换解锁栏即可将其解锁