我是新手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,大家请帮助我:(,我不知道我的问题是什么?
答案 0 :(得分:2)
解决方案似乎很容易。
不要太粗鲁,但最好开始在http://developer.android.com上学习Android。你会发现它非常有用,尤其是http://developer.android.com/training/index.html部分。
答案 1 :(得分:1)
尝试解锁手机,然后运行您的应用程序。
答案 2 :(得分:1)
这是一个锁定屏幕,只需更换解锁栏即可将其解锁