Big Bug Ban

兴趣 践行 创新

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用的.目前就一个图片而已..
image
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>

话说真的很丑么?..

8$L`O6}9PX[]JA_{J0{3QJ6

L`3%LMKSLT{SFGC]R(EBL)P

Written by princehaku

8月 4th, 2010 at 12:12 上午

Posted in Android

Tagged with ,

with 2 comments

2 Responses to 'Android开发日志 UI (1)'

Subscribe to comments with RSS or TrackBack to 'Android开发日志 UI (1)'.

  1. 你误会姐了。。

    大人

    6 8月 10 at 6:37 下午

  2. T_T

    princehaku

    7 8月 10 at 1:33 下午

Leave a Reply