Android小闹钟程序(附源码)(4)

 

 

首页Linux编程

背景:

阅读新闻

Android小闹钟程序(附源码)

[日期:2011-08-21]   来源:csdn  作者:wdaming1986   [字体:]  

五、timeset.xml布局文件中的代码:

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
  Android:id="@+id/layout2"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  xmlns:android="
"
>
  <TextView
    android:id="@+id/text1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/str_text1"
    android:textColor="@drawable/white"
    android:textSize="16sp"
    android:layout_x="10px"
    android:layout_y="32px"
  >
  </TextView>
  <TextView
    android:id="@+id/text2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/str_text2"
    android:textColor="@drawable/white"
    android:textSize="16sp"
    android:layout_x="10px"
    android:layout_y="172px"
  >
  </TextView>
  <TimePicker
    android:id="@+id/tPicker"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="100px"
    android:layout_y="12px"
  >
  </TimePicker>
  <EditText
    android:id="@+id/mEdit"
    android:layout_width="52px"
    android:layout_height="40px"
    android:text="15"
    android:textSize="16sp"
    android:layout_x="120px"
    android:layout_y="162px"
  >
  </EditText>
  <TextView
    android:id="@+id/text3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/str_text3"
    android:textColor="@drawable/white"
    android:textSize="16sp"
    android:layout_x="180px"
    android:layout_y="172px"
  >
  </TextView>
</AbsoluteLayout>

六、string.xml中的代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string>Hello World, EX06_10</string>
  <string>大明原创闹钟</string>
  <string>设置闹钟</string>
  <string>删除闹钟</string>
  <string>重复响起的闹钟</string>
  <string>大明闹钟一</string>
  <string>大明闹钟二</string>
  <string>目前无设置</string>
  <string>开始时间</string>
  <string>重复响起的闹钟</string>
  <string>秒</string>
</resources>

七:color.xml中的代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <drawable>#FFFFFFFF</drawable>
  <drawable>#FF00FFF0</drawable>
  <drawable>#000000</drawable>
  <drawable>#0000FF</drawable>
  <drawable>#FF0000</drawable>
</resources>

八、AndroidManifest.xml中的代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="
"
      package="com.cn.daming"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="8" />

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <!-- 註冊receiver CallAlarm -->
        <receiver android:name=".CallAlarm" android:process=":remote" />
        <activity android:name=".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>
        <activity android:name=".AlarmAlert"
              android:label="@string/app_name">
        </activity>
    </application>
</manifest>

 

Ubuntu 11.04 64位 编译 Android 2.3 源码(姜饼版本)

MyEclipse 9.1配置ADT(Link方式配置Android开发环境)

相关资讯       Android 

   

本文评论   查看全部评论 (1)


评论声明

尊重网上道德,遵守中华人民共和国的各项有关法律法规

承担一切因您的行为而直接或间接导致的民事或刑事法律责任

本站管理人员有权保留或删除其管辖留言中的任意内容

本站有权在网站内转载或引用您的评论

参与本评论即表明您已经阅读并接受上述条款

 

 

第 1 楼

呵呵 发表于 2012/6/18 17:28:01

好 支持

(0) (0)

 

最新资讯

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwdzwj.html