2015-06-30 53 views
0

我在遷移iOS應用程序到AndroidAndroid上的UIImage

在iOS上,我有一個UIImage對象,我不知道我可以在Android上使用哪個對象。我以爲我可以使用Drawable

你推薦我什麼?

+0

是什麼'UIImage'? –

+0

https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIImage_Class/ – Abdellah

回答

0

使用ImageView控件。勾選此link

0

的iOS在Android中等於UIImageView的是ImageView的。

編程做

ImageView imgView = new ImageView(this); 
    //setting image position and there are other properties to position ur imageview 
imgView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT)); 
    //adding view to your layout(linear, relative....etc) 
yourLayout.addView(imgView); 

//Add this is how you set your Image 
this.imgView.setImageBitmap(localBitmap); 

如果您正在使用的XML文件

//Get the reference of imageview 
imgView = (ImageView) findViewById(R.id.imageView1); 

//here you add your image 
imgView.setImageResource(R.drawable.yourImage);