以 Android Studio(或 Eclipse + ADT)为例,大部分开发工作集中在以下几个目录:
res
目录用于存放各种资源文件:
drawable
更适合存放启动图标,同样支持不同分辨率(hdpi, mdpi, xhdpi, xxhdpi)。strings.xml
、colors.xml
等。assets
目录需要手动创建,区别在于资源文件不会在 R.java
中生成 id。
drawable
类型的 XML 文件。layout
目录存放布局文件,通过为特定屏幕适配创建相应的文件夹,如 layout-480x320
。
menu
目录用于存放菜单项相关的资源 XML。现在实体菜单按钮减少,用途变少。
demens.xml
:定义尺寸资源。string.xml
:定义字符串资源。styles.xml
:定义样式资源。colors.xml
:定义颜色资源。arrays.xml
:定义数组资源。attrs.xml
:自定义控件的属性。存放原生资源(音频、视频、XML 等),通过 openRawResource(int id)
获取资源的二进制流。
资源文件在 R.java
下生成对应的资源 id,通过资源 id 进行访问:
javatxtName.setText(getResources().getText(R.string.name)); imgIcon.setBackgroundResource(R.drawable.icon); txtName.setTextColor(getResources().getColor(R.color.red)); setContentView(R.layout.main); txtName = (TextView) findViewById(R.id.txt_name);
xml<TextView
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/img_back"/>
MainActivity.java
javapackage jay.com.example.firstapp;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
activity_main.xml
xml<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
AndroidManifest.xml
xml<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jay.com.example.firstapp">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<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>
</application>
</manifest>
除了上述内容,AndroidManifest.xml
中还需声明权限和组件。
本文作者:Dong
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!