0

我有一个 Spinner,里面只有图像。
我可以在整个微调器上拉伸图像吗?

在此处输入图像描述

行.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 或更低版本使用 fill_parent 而不是 match_parent。还要确保图标在其内部适当拉伸,并且没有不必要的透明背景使图标比您实际需要的大

于 2012-08-20T13:22:48.397 回答