如何拉伸Spinner的图像?

时间:2012-08-20 13:18:47

标签: java android spinner

我有一个只带有图像的Spinner 我可以在整个旋转器上拉伸图像吗?

enter image description here

row.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>

CustomAdapter

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;
}

2 个答案:

答案 0 :(得分:0)

如果您使用

android:scaleType="fitXY"

您的图像将覆盖整个显示区域。

答案 1 :(得分:0)

请改为尝试:

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

如果其API 7或更低版​​本使用fill_parent而不是match_parent。还要确保图标在其内部正确拉伸,并且没有不必要的透明bacground使图标大于您实际需要的