基于android的揚(yáng)大app_第1頁
已閱讀1頁,還剩19頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、<p><b>  揚(yáng)州大學(xué)</b></p><p><b>  信息工程學(xué)院</b></p><p>  基于Android的揚(yáng)州大學(xué)APP</p><p>  姓名:滕玲 </p><p>  班級:物聯(lián)1301 </p><p>  學(xué)

2、號:131408119 </p><p>  日期:2015.12.10 </p><p><b>  目 錄</b></p><p><b>  一、系統(tǒng)設(shè)計(jì)3</b></p><p>  1.1系統(tǒng)名稱3</p><p>  1.2系統(tǒng)總體功能

3、3</p><p>  二、系統(tǒng)開發(fā)及運(yùn)行環(huán)境3</p><p><b>  三、創(chuàng)建項(xiàng)目3</b></p><p>  四、系統(tǒng)界面及程序主要代碼6</p><p>  4.1系統(tǒng)主頁6</p><p>  4.2學(xué)校概況10</p><p>  4

4、.3學(xué)院部門11</p><p>  4.4招生就業(yè)12</p><p>  五、運(yùn)行項(xiàng)目14</p><p>  六、將程序安裝到Android手機(jī)上15</p><p>  七、設(shè)計(jì)總結(jié)與收獲16</p><p>  7.1 常見問題與解決方法16</p><p>  

5、7.2 收獲與小結(jié)16</p><p>  八、附錄(部分源代碼)16</p><p><b>  系統(tǒng)設(shè)計(jì) </b></p><p><b>  系統(tǒng)名稱 </b></p><p>  基于安卓的揚(yáng)州大學(xué)APP</p><p><b>  系統(tǒng)總體功能&

6、lt;/b></p><p>  (1) 能夠閱讀關(guān)于揚(yáng)州大學(xué)的相關(guān)信息   </p><p>  (2) 能打開相關(guān)網(wǎng)頁鏈接</p><p>  (3) 能正常啟動,退出 </p><p>  (4) 能夠在手機(jī)上使用該系統(tǒng)</p><p><b>  系統(tǒng)開發(fā)及運(yùn)行環(huán)

7、境</b></p><p>  本系統(tǒng)的軟件開發(fā)環(huán)境及運(yùn)行環(huán)境具體如下:</p><p>  操作系統(tǒng):Windows 7。</p><p>  JDK環(huán)境:Java SE Development KET(JDK) version 6。</p><p>  開發(fā)工具:Eclipse 3.7.1+Android 4.0.3。<

8、/p><p>  開發(fā)語言:Java、XML。</p><p>  數(shù)據(jù)庫管理軟件:SQLite 3。</p><p>  運(yùn)行平臺:Windows、Linux各版本。</p><p>  分辨率:最佳效果1024×768像素。</p><p><b>  創(chuàng)建項(xiàng)目</b></p>

9、;<p> ?。?)啟動Eclipse,在菜單欄中依次選擇“文件”/“新建”/Android Project命令。</p><p> ?。?)彈出New Android Project窗口中,首先輸入項(xiàng)目名稱YDAPP,并選擇項(xiàng)目存放路徑,然后單擊“下一步”按鈕,進(jìn)入Select Build Target界面,從中選擇Android版本。</p><p> ?。?)單擊“下一

10、步”按鈕,進(jìn)入Application Info界面。</p><p> ?。?)單擊“完成”按鈕。</p><p>  系統(tǒng)界面及程序主要代碼</p><p><b>  系統(tǒng)主頁</b></p><p>  <?xml version="1.0" encoding="utf-8&qu

11、ot;?></p><p>  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"</p><p>  android:layout_width="wrap_content"</p><p>  android:lay

12、out_height="wrap_content"</p><p>  android:background="@drawable/background"</p><p>  android:orientation="vertical" ></p><p>  <ImageView</p&

13、gt;<p>  android:id="@+id/ydxhimg"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:l

14、ayout_marginLeft="30dp"</p><p>  android:src="@drawable/logo28" /></p><p><b>  <Button</b></p><p>  android:id="@+id/xxgk"</p>

15、<p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_marginLeft="33dp"</p><p>  androi

16、d:layout_marginRight="10dp"</p><p>  android:layout_marginTop="100dp"</p><p>  android:background="#00000000"</p><p>  android:onClick="onclick&qu

17、ot;</p><p>  android:text="@string/xxgk" /></p><p><b>  <Button</b></p><p>  android:id="@+id/xybm"</p><p>  android:layout_width=

18、"wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_marginLeft="10dp"</p><p>  android:layout_marginRight="10dp&q

19、uot;</p><p>  android:layout_marginTop="100dp"</p><p>  android:layout_toRightOf="@+id/xxgk"</p><p>  android:background="#00000000"</p><p&g

20、t;  android:onClick="onclick"</p><p>  android:text="@string/xybm" /></p><p><b>  <Button</b></p><p>  android:id="@+id/zsjy"</p&g

21、t;<p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_marginLeft="10dp"</p><p>  and

22、roid:layout_marginRight="10dp"</p><p>  android:layout_marginTop="100dp"</p><p>  android:layout_toRightOf="@+id/xybm"</p><p>  android:background=&quo

23、t;#00000000"</p><p>  android:onClick="onclick"</p><p>  android:text="@string/zsjy" /></p><p><b>  <Button</b></p><p>  andr

24、oid:id="@+id/rcpy"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_below="@+id/

25、xxgk"</p><p>  android:layout_marginLeft="33dp"</p><p>  android:layout_marginRight="10dp"</p><p>  android:background="#00000000"</p><

26、p>  android:onClick="onclick"</p><p>  android:text="@string/rcpy" /></p><p><b>  <Button</b></p><p>  android:id="@+id/szdw"</

27、p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_below="@+id/xybm"</p><p>  

28、android:layout_marginLeft="10dp"</p><p>  android:layout_marginRight="10dp"</p><p>  android:layout_toRightOf="@+id/rcpy"</p><p>  android:background=&

29、quot;#00000000"</p><p>  android:onClick="onclick"</p><p>  android:text="@string/szdw" /></p><p><b>  <Button</b></p><p>  a

30、ndroid:id="@+id/xkky"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_below="@+

31、id/zsjy"</p><p>  android:layout_marginLeft="10dp"</p><p>  android:layout_marginRight="10dp"</p><p>  android:layout_toRightOf="@+id/szdw"</p&

32、gt;<p>  android:background="#00000000"</p><p>  android:onClick="onclick"</p><p>  android:text="@string/xkky" /></p><p><b>  <Butt

33、on</b></p><p>  android:id="@+id/hzjl"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><

34、p>  android:layout_below="@+id/rcpy"</p><p>  android:layout_marginLeft="33dp"</p><p>  android:layout_marginRight="10dp"</p><p>  android:backgroun

35、d="#00000000"</p><p>  android:onClick="onclick"</p><p>  android:text="@string/hzjl" /></p><p><b>  <Button</b></p><p>

36、  android:id="@+id/xyfw"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p>  android:layout_below="

37、;@+id/szdw"</p><p>  android:layout_marginLeft="10dp"</p><p>  android:layout_marginRight="10dp"</p><p>  android:layout_toRightOf="@+id/hzjl"<

38、/p><p>  android:background="#00000000"</p><p>  android:onClick="onclick"</p><p>  android:text="@string/xyfw" /></p><p><b>  <B

39、utton</b></p><p>  android:id="@+id/xywh"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p>&

40、lt;p>  android:layout_below="@+id/xkky"</p><p>  android:layout_marginLeft="10dp"</p><p>  android:layout_marginRight="10dp"</p><p>  android:layout

41、_toRightOf="@+id/xyfw"</p><p>  android:background="#00000000"</p><p>  android:onClick="onclick"</p><p>  android:text="@string/xywh" />&

42、lt;/p><p>  <ImageButton</p><p>  android:id="@+id/xigk"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_cont

43、ent"</p><p>  android:layout_alignLeft="@+id/ydxhimg"</p><p>  android:layout_alignParentBottom="true"</p><p>  android:src="@drawable/img04" />

44、;</p><p>  <ImageButton</p><p>  android:id="@+id/ydxl"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_co

45、ntent"</p><p>  android:layout_alignParentBottom="true"</p><p>  android:layout_toRightOf="@+id/xigk"</p><p>  android:src="@drawable/img03" />

46、</p><p>  <ImageButton</p><p>  android:id="@+id/bgxt"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_con

47、tent"</p><p>  android:layout_alignParentBottom="true"</p><p>  android:layout_toRightOf="@+id/ydxl"</p><p>  android:src="@drawable/img08" />&

48、lt;/p><p>  <ImageButton</p><p>  android:id="@+id/bgxt"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_cont

49、ent"</p><p>  android:layout_alignParentBottom="true"</p><p>  android:layout_toRightOf="@+id/ydxhimg"</p><p>  android:src="@drawable/img01" />

50、;</p><p>  <ImageButton</p><p>  android:id="@+id/rczp"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_co

51、ntent"</p><p>  android:layout_above="@+id/xigk"</p><p>  android:layout_alignRight="@+id/ydxl"</p><p>  android:src="@drawable/img02" /></p

52、><p>  <ImageButton</p><p>  android:id="@+id/bgxt"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content&q

53、uot;</p><p>  android:layout_above="@+id/xigk"</p><p>  android:layout_alignLeft="@+id/xigk"</p><p>  android:src="@drawable/img06" /></p>&l

54、t;p>  <ImageButton</p><p>  android:id="@+id/bgxt"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"<

55、/p><p>  android:layout_alignTop="@+id/rczp"</p><p>  android:layout_toRightOf="@+id/xyfw"</p><p>  android:src="@drawable/img05" /></p><p&g

56、t;  <ImageButton</p><p>  android:id="@+id/bgxt"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p>

57、;<p>  android:layout_alignRight="@+id/xyfw"</p><p>  android:layout_alignTop="@+id/rczp"</p><p>  android:src="@drawable/img07" /></p><p>  

58、</RelativeLayout></p><p><b>  學(xué)校概況</b></p><p>  <?xml version="1.0" encoding="utf-8"?></p><p>  <ScrollView </p><p>  xml

59、ns:android="http://schemas.android.com/apk/res/android" </p><p>  android:layout_width="fill_parent" </p><p>  android:layout_height="fill_parent" </p&g

60、t;<p>  android:scrollbars="vertical" </p><p>  android:fadingEdge="vertical"> </p><p>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res

61、/android"</p><p>  android:orientation="vertical"</p><p>  android:layout_width="match_parent"</p><p>  android:layout_height="match_parent" </

62、p><p>  android:background="@color/white"</p><p><b>  ></b></p><p><b>  <WebView</b></p><p>  android:id="@+id/webView1"&

63、lt;/p><p>  android:layout_width="match_parent"</p><p>  android:layout_height="match_parent" /></p><p>  <ImageView </p><p>  android:id="@

64、+id/imgview1"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p><b>  /></b></p><p&

65、gt;<b>  <TextView</b></p><p>  android:id="@+id/textView1"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_

66、content" </p><p>  android:textColor="@color/black"</p><p><b>  /></b></p><p>  </LinearLayout></p><p>  </ScrollView></p&g

67、t;<p><b>  學(xué)院部門</b></p><p>  <?xml version="1.0" encoding="utf-8"?></p><p>  <ScrollView </p><p>  xmlns:android="http://sche

68、mas.android.com/apk/res/android" </p><p>  android:layout_width="fill_parent" </p><p>  android:layout_height="fill_parent" </p><p>  android:scrol

69、lbars="vertical" </p><p>  android:fadingEdge="vertical"></p><p>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"</p><

70、p>  android:orientation="vertical"</p><p>  android:layout_width="match_parent"</p><p>  android:layout_height="match_parent"</p><p>  android:backg

71、round="@color/white"</p><p><b>  ></b></p><p><b>  <WebView</b></p><p>  android:id="@+id/webView2"</p><p>  android:l

72、ayout_width="match_parent"</p><p>  android:layout_height="match_parent" </p><p><b>  /></b></p><p>  <ImageView </p><p>  android

73、:id="@+id/imgview2"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p><b>  /></b></p&

74、gt;<p><b>  <TextView</b></p><p>  android:id="@+id/textView1"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height=

75、"wrap_content"</p><p>  android:textColor="@color/black" </p><p><b>  /></b></p><p>  </LinearLayout></p><p>  </ScrollView&

76、gt;</p><p><b>  招生就業(yè)</b></p><p>  <?xml version="1.0" encoding="utf-8"?></p><p>  <ScrollView </p><p>  xmlns:android="

77、http://schemas.android.com/apk/res/android" </p><p>  android:layout_width="fill_parent" </p><p>  android:layout_height="fill_parent" </p><p>  an

78、droid:scrollbars="vertical" </p><p>  android:fadingEdge="vertical"></p><p>  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"</

79、p><p>  android:orientation="vertical"</p><p>  android:layout_width="match_parent"</p><p>  android:layout_height="match_parent"</p><p>  an

80、droid:background="@color/white"</p><p><b>  ></b></p><p><b>  <WebView</b></p><p>  android:id="@+id/webView3"</p><p>

81、  android:layout_width="match_parent"</p><p>  android:layout_height="match_parent" </p><p><b>  /></b></p><p>  <ImageView </p><p&g

82、t;  android:id="@+id/imgview3"</p><p>  android:layout_width="wrap_content"</p><p>  android:layout_height="wrap_content"</p><p><b>  /></b

83、></p><p><b>  <TextView</b></p><p>  android:id="@+id/textView1"</p><p>  android:layout_width="wrap_content"</p><p>  android:lay

84、out_height="wrap_content"</p><p>  android:textColor="@color/black" </p><p><b>  /></b></p><p>  </LinearLayout></p><p>  </

85、ScrollView></p><p><b>  運(yùn)行項(xiàng)目</b></p><p>  模塊設(shè)計(jì)及代碼編寫完成之后,單擊Eclipse開發(fā)工具的工具欄中的運(yùn)行鍵,或者在菜單欄中選擇“運(yùn)行”/“運(yùn)行”命令,運(yùn)行該項(xiàng)目,顯示揚(yáng)州大學(xué)APP登錄窗口,如下圖所示。</p><p>  進(jìn)入揚(yáng)大APP的主窗體,然后用戶可以單擊主窗體中的各個(gè)功能圖

86、標(biāo),以便調(diào)用其各個(gè)子模塊。例如,在主窗體中單擊“校園文化”按鈕,顯示校園文化的相關(guān)內(nèi)容,如下圖所示。該窗口中,用戶可以打開相應(yīng)的網(wǎng)頁。</p><p>  將程序安裝到Android手機(jī)上</p><p>  使用adb命令將此軟件安裝到Android模擬器的步驟如下:</p><p>  (1) 開發(fā)完揚(yáng)大系統(tǒng)軟件后,在Eclipse中運(yùn)行該程序,會在項(xiàng)目文件的b

87、in文件下自動生成一個(gè)apk文件,如圖,將該文件復(fù)制到AndroidSDK安裝路徑下的platform-tools文件夾中。</p><p>  (2) 在“開始”菜單中打開cmd命令提示窗口,首先把路徑切換到Android SDK安裝路徑的platform-tools文件夾,然后使用adb install命令將YDAPP.apk文件夾安裝到Android模擬器上。如果要將文件安裝到SD卡,則使用adb inst

88、all-s命令,如圖、</p><p>  (3) 安裝成功后,顯示Success成功信息,打開Android模擬器,可以看到安裝的揚(yáng)州大學(xué)系統(tǒng)軟件,如圖所示。</p><p><b>  設(shè)計(jì)總結(jié)與收獲</b></p><p>  7.1 常見問題與解決方法</p><p> ?。?)問題描述:我有一款HTC的智能手機(jī)

89、,為什么下載安裝該程序后無法運(yùn)行?</p><p>  解決方法:該錯誤是由于Android版本低造成的,由于家庭理財(cái)通系統(tǒng)使用的是Android 4.0版本開發(fā)的,所以需要在裝有Android 4.0以上版本的手機(jī)上運(yùn)行,你可以聯(lián)系供應(yīng)商升級Android到最新版本,然后再安裝使用。</p><p> ?。?)問題描述:在Eclipse開發(fā)環(huán)境中修改完代碼,重新運(yùn)行程序時(shí),出現(xiàn)如下圖所示

90、的錯誤提示。</p><p>  解決方法:該錯誤是由于Android版本低造成的,由于家庭理財(cái)通系統(tǒng)使用的是Android 4.0版本開發(fā)的,所以需要在裝有Android 4.0以上版本的手機(jī)上運(yùn)行,你可以聯(lián)系供應(yīng)商升級Android到最新版本,然后再安裝使用。</p><p><b>  7.2 收獲與小結(jié)</b></p><p>  在此

91、次課程設(shè)計(jì)中,我不僅了解到了android的有關(guān)知識,而且學(xué)習(xí)了Java語言以及eclipse等硬件環(huán)境。有幾點(diǎn)需要特別注意:</p><p>  要明確課程設(shè)計(jì)的要求,想好系統(tǒng)應(yīng)該包含哪些功能模塊。否則,在軟件設(shè)計(jì)的后期,再想添加新的功能就需要花費(fèi)大量的時(shí)間。</p><p>  要對android系統(tǒng)有一定的了解。在軟件設(shè)計(jì)過程中,大量的用到了android系統(tǒng)的四大組件:Activi

92、ty(提供可視化的界面)、Service(運(yùn)行在后臺的服務(wù)程序)、Broadcast Receiver(廣播事件處理機(jī)制)、Content Provider(使應(yīng)用程序相互訪問數(shù)據(jù))。只有對這些組件熟練掌握后,才能夠真正設(shè)計(jì)出穩(wěn)健搞笑的多媒體播放器。</p><p>  要對Java語言熟練掌握。Android軟件開發(fā)都是用Java語言寫的,而Java又是由類組成的。而Java語言本身又含有眾多機(jī)制,只有深刻理解

93、這些機(jī)制后,才能輕松地實(shí)現(xiàn)自己想要的功能。</p><p>  要對界面設(shè)計(jì)有一定的了解。Android所有的布局都放在了res/layout中,而所有的菜單選項(xiàng)都放在了res/menu中。</p><p>  要具備快速上網(wǎng)查資料的能力。網(wǎng)上的很多現(xiàn)成的資料都可借鑒、學(xué)習(xí)。在熟練理解了別人的應(yīng)用程序的基礎(chǔ)上,再做二次開發(fā)。</p><p><b>  附

94、錄(部分源代碼)</b></p><p>  MainActivity.java</p><p>  package yzdxapp.com;</p><p>  import android.app.Activity;</p><p>  import android.content.Intent;</p><

95、;p>  import android.os.Bundle;</p><p>  import android.view.KeyEvent;</p><p>  import android.view.View;</p><p>  import android.view.ViewGroup;</p><p>  import andr

96、oid.widget.Button;</p><p>  import android.widget.ProgressBar;</p><p>  import android.widget.TextView;</p><p>  import android.widget.Toast;</p><p>  public class Main

97、activity extends Activity {</p><p>  Button button1 = null;</p><p>  Button button2 = null;</p><p>  Button button3 = null;</p><p>  Button button4 = null;</p>&

98、lt;p>  Button button5 = null;</p><p>  Button button6 = null;</p><p>  Button button7 = null;</p><p>  Button button8 = null;</p><p>  Button button9 = null;</p&

99、gt;<p>  private long exitTime;</p><p>  public void onCreate(Bundle savedInstanceState) {</p><p>  super.onCreate(savedInstanceState);</p><p>  setContentView(R.layout.main)

100、;</p><p>  button1 = (Button)findViewById(R.id.xxgk);</p><p>  button1.setOnClickListener(new Button.OnClickListener(){</p><p>  public void onClick(View v){</p><p>  I

101、ntent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Xxgkactivity.class);</p><p>  startActivity(intent);</p><p><b>  }</b></p><p><b&

102、gt;  });</b></p><p>  button2 = (Button)findViewById(R.id.xybm);</p><p>  button2.setOnClickListener(new Button.OnClickListener(){</p><p>  public void onClick(View v){</p&

103、gt;<p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Xybmactivity.class);</p><p>  startActivity(intent); </p><p><b>  }</b>&

104、lt;/p><p><b>  });</b></p><p>  button3 = (Button)findViewById(R.id.zsjy);</p><p>  button3.setOnClickListener(new Button.OnClickListener(){</p><p>  public vo

105、id onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Zsjyactivity.class);</p><p>  startActivity(intent);</p><p><b&

106、gt;  }</b></p><p><b>  });</b></p><p>  button4 = (Button)findViewById(R.id.rcpy);</p><p>  button4.setOnClickListener(new Button.OnClickListener(){</p><

107、;p>  public void onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Rcpyactivity.class);</p><p>  startActivity(intent);</p>

108、<p><b>  }</b></p><p><b>  });</b></p><p>  button5 = (Button)findViewById(R.id.szdw);</p><p>  button5.setOnClickListener(new Button.OnClickListener(

109、){</p><p>  public void onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Szdwactivity.class);</p><p>  startActivity(i

110、ntent);</p><p><b>  }</b></p><p><b>  });</b></p><p>  button6 = (Button)findViewById(R.id.xkky);</p><p>  button6.setOnClickListener(new Button

111、.OnClickListener(){</p><p>  public void onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Xkkyactivity.class);</p><p>

112、  startActivity(intent);</p><p><b>  }</b></p><p><b>  });</b></p><p>  button7 = (Button)findViewById(R.id.hzjl);</p><p>  button7.setOnClickLi

113、stener(new Button.OnClickListener(){</p><p>  public void onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Hzjlactivity.class);<

114、/p><p>  startActivity(intent);</p><p><b>  }</b></p><p><b>  });</b></p><p>  button8 = (Button)findViewById(R.id.xyfw);</p><p>  but

115、ton8.setOnClickListener(new Button.OnClickListener(){</p><p>  public void onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainactivity.this,Xyfwact

116、ivity.class);</p><p>  startActivity(intent);</p><p><b>  }</b></p><p><b>  });</b></p><p>  button9 = (Button)findViewById(R.id.xywh);</p>

117、;<p>  button9.setOnClickListener(new Button.OnClickListener(){</p><p>  public void onClick(View v){</p><p>  Intent intent = new Intent();</p><p>  intent.setClass(Mainacti

118、vity.this,Xywhactivity.class);</p><p>  startActivity(intent);</p><p><b>  }</b></p><p><b>  });</b></p><p><b>  }</b></p>&l

119、t;p>  public boolean onKeyDown(int keyCode, KeyEvent event) {</p><p>  if(keyCode == KeyEvent.KEYCODE_BACK</p><p>  && event.getAction() == KeyEvent.ACTION_DOWN){</p><p>

120、  if((System.currentTimeMillis() - exitTime > 2000)){</p><p>  Toast.makeText(getApplicationContext(), R.string.backcancel</p><p>  , Toast.LENGTH_LONG).show();</p><p>  exitTime

121、 = System.currentTimeMillis();</p><p><b>  }</b></p><p><b>  else{</b></p><p><b>  finish();</b></p><p>  System.exit(0);</p>

122、<p><b>  }</b></p><p>  return true;</p><p><b>  }</b></p><p>  return super.onKeyDown(keyCode, event);</p><p><b>  }</b></

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 眾賞文庫僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論