Android 程式如何引用 Android 系統資源檔


Android 本身就內建一些系統資源,

而要使用這些 Android 系統資源檔很容易,

因為這些系統資源檔都放置在 android.R package 中,

所以, 其使用的語法, 如右: android.R.<class_name>.<final_variable>

簡易範例, 如下 :

 Java 程式碼
public class helloWorld extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);

AbsoluteLayout al = new AbsoluteLayout(this);
Button b = new Button(this);

// Button 使用 Android 內建圖示
b.setBackgroundResource( android.R.drawable.ic_menu_camera );

// 設定 Button 大小與位置
b.setLayoutParams( new AbsoluteLayout.LayoutParams( 64, 64, 0, 0 ) );

al.addView(b);
setContentView(al);
}
}

範例結果 :


Related Posts Plugin for WordPress, Blogger...