美文网首页
第二周笔记

第二周笔记

作者: 董朕 | 来源:发表于2016-10-20 17:26 被阅读0次

    活动

    Eclipse的代码助手与快速补全(alt+/)

    助手windows—preferense—Java—editor—content—倒数第二行把26个字母补全(不删.)。

    步骤1:(1)activity(一个页面)

    (2)layout(页面布局)

    (3)res(页面内的资源(drawable))

    注:按照上次课建新project(但不自动生成图标与activity)。

    确定版本android:versionName="1.0.0"

    改图标android:icon="@drawable/logo"

    复制包名com.example.dongzhen

    继承父类android.app.Activity

    调用onCreate

    Layout下创建Android xml file(名称不允许大写)。

    设置背景android:background="@drawable/lbg">

    注册包,否则安装后会有没注册警告

    <activity

               android:name=".dongzhen1"

               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>

    创建命令按钮

    <Button

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="切换到下一页"  

           ></Button>

    控件注册android:id="@+id/button"

    绑定控件Button并强制转换button=(Button) findViewById(R.id.button);

    建立第二页(方法同上)

    对按钮写监听页面跳转

    button.setOnClickListener(new View.OnClickListener() {

    @Override

    public void onClick(View arg0) {

    // TODO Auto-generated method stub

    }

    });

    通过intent进行跳转

    Intent intent=new Intent(dongzhen1.this,dongzhen2.class);

    startActivity(intent);

    步骤2:装饰

    步骤3:交互(按钮等)

    步骤4:(1)线性布局 (2)相对布局

    步骤5:(1)签名  (2)打包  (3)发布

    总结:版本号、版本名称的修改

    应用名、图标的修改

    声明首页

    布局

    第二周笔记 第二周笔记

    相关文章

      网友评论

          本文标题:第二周笔记

          本文链接:https://www.haomeiwen.com/subject/ngnfuttx.html