`
410063005
  • 浏览: 177924 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

简单试用Android Annotations

 
阅读更多

参考:试用android annotations

 

       Android Annotations号称 "是一个能够加速 Android 开发的开源框架,它可以帮助开发者处理

一些前后台任务、rest 服务、应用类、代码片段等,让开发者专注于真正重要的东西”。

 

      为了看看实际效果,今天搭建环境,简单试用了一下(只是跑起来了。。。)

 

一、准备工作

  1. https://github.com/excilys/androidannotations下载源码及相关的jar包
  2. 按照https://github.com/excilys/androidannotations/wiki/Eclipse-Project-Configuration上的步骤配置Eclipse

二、运行Demo

       将demo中examples\HelloWorldEclipse目录下的项目导入到Eclipse中,运行良好

 

三、运行简单工程

  1. 工程目录


     
  2. 配置Eclipse

     


  3. 代码

    package com.example.tmptmp;
    
    import com.googlecode.androidannotations.annotations.EActivity;
    
    import android.app.Activity;
    
    @EActivity(R.layout.activity_first)
    public class FirstActivity extends Activity {
    
    }
    
     
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    
        <TextView
            android:id="@+id/helloTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="17dp"
            android:layout_marginTop="15dp"
            android:text="TextView" />
    
    </RelativeLayout>
    
     
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.tmptmp"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="17" />
    
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity android:name="com.example.tmptmp.FirstActivity_" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>
    
    </manifest>
     
  4. 运行结果

    可以正常运行

四、问题

疑问一: 为什么在manifest中配置Activity名字时要多加一个"_"
疑问二: 复杂项目中是否能正常使用,比如结合第三方的库

带着这两个问题,继续看看

 

 

  • 大小: 17.3 KB
  • 大小: 62 KB
  • 大小: 65.4 KB
1
2
分享到:
评论
1 楼 cndemoz 2013-12-06  
第一个问题是,因为编译的时候会生成一个子类后面加一个_,正真使用的是子类

相关推荐

Global site tag (gtag.js) - Google Analytics