当前位置:   article > 正文

Android Studio创建并运行一个安卓项目和多模块的创建_android studio一个项目怎么添加多个布局

android studio一个项目怎么添加多个布局

目录

新建项目,选择一个空布局,next

填写项目名,包名,项目本地路径,选择api,finish

运行

多模块创建

验证

main模块配置

​编辑

app主模块

运行


之前用idea跑安卓项目,其实还是Android Studio跑安卓项目更方便

新建项目,选择一个空布局,next

        

填写项目名,包名,项目本地路径,选择api,finish

打开项目

运行

真机调试或者avd运行,avd模拟器配置:

Android AVD模拟器的参数设置与相关优化_瑶山的博客-CSDN博客_android avd 配置

就是这么简单!

多模块创建

点击项目右键,选择New—>Module, 选择Android Library,然后设置自己Module的名称以及包名等信息

打开项目的Projuct Structure界面

添加依赖后在不同模块之间相互引用可以自动添加import语句

添加成功

    implementation project(path: ':main')

验证

main模块配置

main下面创建res资源文件夹,在创建activity_first.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <TextView
  6. android:layout_width="wrap_content"
  7. android:layout_height="wrap_content"
  8. android:text="main模块!"
  9. android:layout_centerInParent="true"/>
  10. </RelativeLayout>

main->java包下创建FirstActivity java文件

  1. package com.example.main.view;
  2. import android.os.Bundle;
  3. import androidx.annotation.Nullable;
  4. import androidx.appcompat.app.AppCompatActivity;
  5. import com.example.main.R;
  6. public class FirstActivity extends AppCompatActivity {
  7. @Override
  8. protected void onCreate(@Nullable Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. setContentView(R.layout.activity_first);
  11. }
  12. }

结构如下

app主模块

activity_main.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <Button
  6. android:id="@+id/btn_start_module"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:text="点击启动main模块!"
  10. android:layout_centerInParent="true"/>
  11. </RelativeLayout>

MainActivity文件

  1. package com.example.demo;
  2. import android.content.Intent;
  3. import android.os.Bundle;
  4. import androidx.appcompat.app.AppCompatActivity;
  5. import com.example.main.view.FirstActivity;
  6. public class MainActivity extends AppCompatActivity {
  7. @Override
  8. protected void onCreate(Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. setContentView(R.layout.activity_main);
  11. initView();
  12. }
  13. private void initView() {
  14. findViewById(R.id.btn_start_module).setOnClickListener(
  15. view -> {
  16. Intent intent = new Intent(MainActivity.this, FirstActivity.class);
  17. startActivity(intent);
  18. }
  19. );
  20. }
  21. }

在Androidmanifest.xml全局配置文件中,添加main页面的活动

<activity android:name="com.example.main.view.FirstActivity" />

运行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/267076
推荐阅读
相关标签
  

闽ICP备14008679号