Android Studio制作第一个Hello World!
Posted 404detective
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio制作第一个Hello World!相关的知识,希望对你有一定的参考价值。
为什么要com.example.xxx,example一看就可以改,那com呢
一般的命名规则
indi :个体项目,指个人发起,但非自己独自完成的项目,可公开或私有项目。
包名为“indi.发起者名.项目名.模块名.……”。
pers :个人项目,指个人发起,独自完成,可分享的项目。
包名为“pers.个人名.项目名.模块名.……”。
priv :私有项目,指个人发起,独自完成,非公开的私人使用的项目。
包名为“priv.个人名.项目名.模块名.……”。
onem :与“indi”相同,推荐使用“indi”。
team :团队项目,指由团队发起,并由该团队开发的项目。
包名为“team.团队名.项目名.模块名.……”。
com :公司项目。
包名为“com.公司名.项目名.模块名.……”。
package com.dete404.Test;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
public class MainActivity extends AppCompatActivity
private static final String tag="Main";
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.v(tag,"onCreate");
Log.d(tag,"onCreate");
Log.i(tag,"onCreate");
Log.w(tag,"onCreate");
Log.w("tag","onCreate");
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
以上是关于Android Studio制作第一个Hello World!的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio制作第一个Hello World!
Android Studio制作第一个Hello World!
Android Studio制作第一个Hello World!
在Android Studio中创建(或添加)第一个Hello World应用程序