我在遷移iOS應用程序到Android。Android上的UIImage
在iOS上,我有一個UIImage
對象,我不知道我可以在Android上使用哪個對象。我以爲我可以使用Drawable
。
你推薦我什麼?
我在遷移iOS應用程序到Android。Android上的UIImage
在iOS上,我有一個UIImage
對象,我不知道我可以在Android上使用哪個對象。我以爲我可以使用Drawable
。
你推薦我什麼?
您最需要查看ImageView。
使用ImageView控件。勾選此link
的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);
是什麼'UIImage'? –
https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIImage_Class/ – Abdellah