android開發(fā)中文件夾和文件對應的含義,Activity的使用
發(fā)布時間:2013/11/08
字體:大中小
摘要:android開發(fā)中文件夾和文件對應的含義,Activity的使用,Activity的使用方法,android開發(fā)中對應文件夾的含義,Activity的使用方法,android開發(fā)中對應文件夾的含義
Src :編寫的源文件。
Gen:默認生成的java文件,不要修改
Android:jar文件
Assets:可以放置文件,可放置任何文件
Res:可以放置文件,其中的文件會在R.java中生成對應ID的信息
下面的drawable分別是圖片大小文件夾,不同版本的分辨率放置不同的圖片
Layout是控件位置和屬性,布局文件:
Manifest package,應用程序的包名
AndroidManifest.xml
Application 應用程序配置,android:icon配置圖標可以應用R.java中的資源,android:label配置標簽。
1, 每個Activity都是一個類,需要集成Activity。
protected void onCreate(Bundle savedInstanceState)
2, 需要復寫onCreate方法,當Activity第一次運行的時候會調用其方法。
3, 每個Activity都需要在manifest中進行配置
4, 在layout中的activity中設置文本的布局。如:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
android:id="@+id/mytext" 取得生成的ID在R.java中