第一種在xml布局文件中添加(靜態的添加)
- <ImageView
- Android:id="@+id/image_1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/me"
- ></ImageView>
就像在html標簽中
image
android:src引用的圖片的路徑!
在res建立drawable文件夾其中的me為文件的名字。
第二中(動態的添加)
在Activity中動態的添加
例如當點擊按鈕時 顯示圖片
- public class Framemain extends Activity {
- private ImageView imageView;
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.framemain);
- Intent intent=this.getIntent();
- TextView textView=(TextView)findViewById(R.id.showUser);
- textView.setText(intent.getStringExtra("username"));
- imageView=(ImageView) findViewById(R.id.me_image);
- Resources resources=getResources();
- Drawable drawable =resources.getDrawable(R.drawable.me);
- imageView.setImageDrawable(drawable);
- }
- }