AndroidStudio配置Androidannotation

來源:互聯網
上載者:User

標籤:androidannotation 安卓

github中搜尋Androidannotation。裡面也有很詳細的講解過程。包括eclipse版本和IntellJ的相關配置。因為自己使用的是AndroidStudio所以在這裡講解下AndroidStudio的配置。在網上搜了很多,在自己配置過程中又遇到了不同的麻煩。所以在這裡總結一下。這裡貼出github中這個相關的連結:https://github.com/excilys/androidannotations/wiki/Configuration

下面是我的Androidstudio中的一些配置。

build.gradle(module)檔案中的配置:

apply plugin: 'com.android.application'apply plugin: 'android-apt'def AAVersion = '3.3.2'android {    compileSdkVersion 22    buildToolsVersion "22.0.1"    defaultConfig {        applicationId "lzl.edu.com.firstannitation"        minSdkVersion 22        targetSdkVersion 22        versionCode 1        versionName "1.0"    }    buildTypes {        release {            minifyEnabled false            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'        }    }}dependencies {    compile fileTree(dir: 'libs', include: ['*.jar'])    apt "org.androidannotations:androidannotations:$AAVersion"    compile "org.androidannotations:androidannotations-api:$AAVersion"}apt {    arguments {        androidManifestFile variant.outputs[0].processResources.manifestFile        // if you have multiple outputs (when using splits), you may want to have other index than 0        // you should set your package name here if you are using different application IDs        // resourcePackageName "lzl.edu.com.firstannitation"        // You can set optional annotation processing options here, like these commented options:       //  logLevel 'INFO'        // logFile '/var/log/aa.log'    }}
build.gradle(project)檔案中的配置

// Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript {    repositories {        jcenter()        mavenCentral()    }    dependencies {        classpath 'com.android.tools.build:gradle:1.2.3'        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'        // NOTE: Do not place your application dependencies here; they belong        // in the individual module build.gradle files    }    repositories {        mavenCentral()        mavenLocal()    }}allprojects {    repositories {        jcenter()    }}
在AndroidStudio中將這個配置好之後,然後在AndroidManifest.xml檔案中:這裡主要是將
 android:name="lzl.edu.com.firstannitation.MainActivity" 改為了 android:name="lzl.edu.com.firstannitation.MainActivity_"

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="lzl.edu.com.firstannitation" >    <application        android:allowBackup="true"        android:icon="@mipmap/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme" >        <activity            android:name="lzl.edu.com.firstannitation.MainActivity_"            android:label="@string/app_name" >            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application></manifest>
然後就可以在Activity中使用這個開發架構了。

package lzl.edu.com.firstannitation;import android.app.Activity;import android.os.Bundle;import android.widget.TextView;import org.androidannotations.annotations.AfterViews;import org.androidannotations.annotations.EActivity;import org.androidannotations.annotations.ViewById;@EActivity(R.layout.activity_main)public class MainActivity extends Activity {    @ViewById(R.id.textview1)    TextView textView1;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);    }    @AfterViews    void afterViews(){        textView1.setText("你好,上海!");    }}






著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

AndroidStudio配置Androidannotation

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.