我创建了我的第一个应用程序。现在学习安卓。这是我的主要活动:
<?xml version=”1.0” encoding=”utf-8”?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/
android”
android:layout_width=”fill_parent”
Creating Your First Android Application ❘ 25
android:layout_height=”fill_parent”
android:orientation=”vertical” >
<TextView
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:text=”@string/hello” />
<TextView
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:text=”This is my first Android Application!” />
<Button
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:text=”And this is a clickable button!” />
</LinearLayout>
但是我在布局上的项目是倾斜的。有人可以帮忙吗?
这是视图的链接
http://screencast.com/t/JmA3r48rosjM
非常感谢,
吨