在 Android 程序里显示自己的图片
2010-02-24 04:43:00 来源:WEB开发网在Android程序里显示自己的图片
1. 定义文件flybulllogo.png于目录resdrawable下
2. 将main.xml改为如下即可
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
id="@+id/logo"
android:src="@drawable/flybulllogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
// 而直接在程序里面加载图片的方法如下
package com.flybull.pub;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.widget.ImageView;
public class pubBull extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ImageView img = new ImageView(this);
img.setImageResource(R.drawable.flybulllogo);
setContentView(img);
}
}
// 更进一步, 变换图片
package com.flybull.pub;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageView;
public class pubBull extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ImageView img = new ImageView(this);
img.setImageResource(GeneratePicId());
- ››程序员 不妨都写一写前端代码
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
更多精彩
赞助商链接