继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Android学习日记——HelloWorld

web北岛
关注TA
已关注
手记 5
粉丝 27
获赞 57

1.activity_main布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    android:orientation="horizontal" >

    <TextView 
        android:id="@+id/hello"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        android:textSize="20sp"
        android:layout_gravity="center"
        android:gravity="center"
        android:textColor="#ff000000"/>

</LinearLayout>

2.MainActivity功能实现

package com.helloworld;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

3.运行效果:
图片描述


4.学习总结:
Android项目开发,先需要布局好文件,也就是xml文件。而后去java中实现基本功能,在java中把布局文件一一对应好。
座右铭:抱怨没有用,一切靠自己!

打开App,阅读手记
13人推荐
发表评论
随时随地看视频慕课网APP

热门评论

前面有阴影,因为后面有阳光!

查看全部评论