Android开发日志 UI (1)
本文为princehaku原创 已经参加 “首届 Google 暑期大学生博客分享大赛——2010 Android 篇”
如果您忘了我的地址 请使用google搜索 “Android开发日志”
要在android里面设置布局..
可以用res/layout/XXX 其实这个无所谓..一个标准而已
然后在主程序
setContentView(R.layout.main);
就可以调用
默认的netbeans里面有生成一个main.xml
<?xml version="1.0" encoding="UTF-8"?> <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:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Hello Android from NetBeans"/> </LinearLayout>
会显示出一段话 (请注意我标大红色的那个小分号.很关键.不能丢弃..至少在这里是..很诡异啊..)
然后这个是我设计的给KVB用的.目前就一个图片而已..
XML如下..
<?xml version="1.0" encoding="UTF-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">" <ImageView android:id="@+id/imageview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/bg" /> </LinearLayout>
话说真的很丑么?..
你误会姐了。。
大人
6 8月 10 at 6:37 下午
T_T
princehaku
7 8月 10 at 1:33 下午