ImageView 用の画像オーバーレイ ファイルがありますが、残念ながら画像をオーバーレイとして表示すると引き伸ばされます。
これが私のオーバーレイ画像xmlファイルです:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" >
<item android:drawable="@drawable/btn_play" />
</layer-list>
ImageView にオーバーレイを実装する方法は次のとおりです。
ImageView imageView = new ImageView(this);
try {
imageView.setBackgroundDrawable(drawable_from_url(thumbnail_url,
thumbnail_url));
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
imageView.setImageDrawable(getResources().getDrawable(R.layout.video_layer));
オーバーレイ画像が伸びないようにする方法を知っている人はいますか?