0

内部に画像のみのスピナーがあります。
スピナー全体に画像を引き伸ばすことはできますか?

ここに画像の説明を入力

行.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal">
  <ImageView
    android:id="@+id/country_icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/image"/>
</LinearLayout>

カスタムアダプター

public View getCustomView(int position, View convertView,ViewGroup parent) 
{   
    LayoutInflater inflater = (LayoutInflater) m_Contex.getSystemService(Context.LAYOUT_INFLATER_SERVICE);      
    View row = inflater.inflate(R.layout.row, parent, false);
    ImageView icon = (ImageView) row.findViewById(R.id.country_icon);
    icon.setImageResource(m_CountryImages.get(position));
    return row;
}
4

2 に答える 2

0

使用する場合

android:scaleType="fitXY"

画像は表示領域全体に広がります。

于 2012-08-20T13:22:43.527 に答える
0

代わりにこれを試してください:

<ImageView
    android:id="@+id/country_icon"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/image"/>

API 7以下の場合は、match_parentの代わりにfill_parentを使用してください。また、アイコンがそれ自体の内部で適切に引き伸ばされていること、およびアイコンを実際に必要とするよりも大きくする不要な透明な背景がないことを確認してください

于 2012-08-20T13:22:48.397 に答える