让代码更简单

第一个安卓程序hello word

重要:本文最后更新于2018-11-15 16:14:22,某些文章具有时效性,若有错误或已失效,请在下方留言或联系代码狗
  1. 新建一个安卓工程。
  2. 打开工程目录下的main.xml布局文件
复制
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
android:layout_width="fill_parent" 
android:layout_height="fill_parent"  
android:orientation="vertical" >  
<TextView  android:layout_width="fill_parent"  
android:layout_height="wrap_content"  
android:text="@string/hello" />  
</LinearLayout>

复制
android:text="@string/hello"

改为

复制
android:text="第一个安卓程序"

试试效果!

代码狗安卓开发教程——第一个安卓程序

感觉很棒!可以赞赏支持我哟~

0 打赏

评论 (0)

登录后评论
QQ咨询 邮件咨询 狗哥推荐