码迷,mamicode.com
首页 > 移动开发 > 详细

Android - HelloWorld的Layout内容

时间:2015-12-08 20:11:19      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

Android - HelloWorld的Layout内容


本文地址: http://blog.csdn.net/caroline_wendy


作为最基础的Android程序, HelloWorld的XML文件能够作为測试使用.


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MyActivity">

    <TextView
        android:text="@string/hello_world"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>


技术分享

Android - HelloWorld的Layout内容

标签:

原文地址:http://www.cnblogs.com/gcczhongduan/p/5030735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!