我想显示一个自定义视图,由一个垂直LinearLayout中ImageView上方的TextView组成,一次一个在Gallery中。
问题是我的自定义视图没有填满屏幕。我可以看到其他方面的一部分,我不想要这个问题。
以下是我的自定义视图的xml: gallery_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery_item_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/gallery_item_cardname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="20dp"
android:textStyle="bold"
android:text="@string/contrebandiers_lvl1"
android:textColor="@android:color/darker_gray"
/>
<ImageView
android:id="@+id/gallery_item_cardimg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:contentDescription="@string/app_name"
android:src="@drawable/contrebandiers_lvl1"
/>
</LinearLayout>
以下是我的适配器getVew方法的代码: GTRoundDeckAdapter
public View getView(int position, View convertView, ViewGroup parent)
{
GalleryItem galleryItem;
if(convertView == null)
{
galleryItem = new GalleryItem();
convertView = mInflater.inflate(R.layout.gallery_item, null);
galleryItem.cardName = (TextView) convertView.findViewById(R.id.gallery_item_cardname);
galleryItem.cardImg = (ImageView) convertView.findViewById(R.id.gallery_item_cardimg);
convertView.setTag(galleryItem);
}
else
{
galleryItem = (GalleryItem) convertView.getTag();
}
GTCard gtCard = (GTCard) mRoundDeck.get(position);
galleryItem.cardName.setText(gtCard.getNameId());
galleryItem.cardImg.setImageResource(gtCard.getImgId());
return convertView;
}
我感谢你的帮助。
塞缪尔
答案 0 :(得分:0)
你应该同时使用textview和imageview fillparent的宽度。然后它将填满画廊的屏幕......
答案 1 :(得分:0)
我建议您使用ViewPager而不是Gallery。根据我的个人经验,我发现Gallery略显错误。如果您的要求是一次只显示一个视图,那么ViewPager(允许您向左和向右滑动以逐个显示)应该符合您的需求。
您需要包含Android支持包才能使用ViewPager。
指向支持包的链接:http://developer.android.com/sdk/compatibility-library.html 关于如何使用ViewPager的链接:http://blog.stylingandroid.com/archives/537