有前端经验如何做Android原生开发

2020-11-17  本文已影响0人  ShoneSingLone

我有Web前端开发经验,如何快速上手android开发?

基本概念

R是根据静态资源动态生成的Android Kotlin程序可引用的模块,webpack也会将不是js的文件处理成可引用资源。清单、列表、枚举。

AndridManifest.xml

应用的描述文件

跟PWA相关的manifest也比较类似,指定启动的图标、主题色之类的。

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

android:id=>findViewById =>#id document.getElementById()
layout_width=>match_parent wrap_content

上一篇 下一篇

猜你喜欢

热点阅读