我正在尝试制作HorizontalListView(by DevSmart)
,其中第一个项目(列)的宽度为Ndp
,所有下一个项目的宽度都为N/2dp
。在我的示例N = 300
中。所以我完美地为标准的Android ListView做了它,效果很好。但是在使用与HorizontalListView完全相同的逻辑之后,我面临着误解。
所有项目的宽度和高度都与HorizontalListView相同。它 不知道我在
photo.xml
中指定的宽度/高度。 因此,我可以为整个屏幕提供宽高的项目(因为我的com.example.yura.listviewscale.HorizontalListView
的宽度和高度都为match_parent
)
有人能帮助我吗?
activity_main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.yura.listviewscale.MainActivity" >
<com.example.yura.listviewscale.HorizontalListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/myHzListView" />
</LinearLayout>
photo.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="300dp"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parnet"
android:layout_height="match_parent"
android:id="@+id/photoView" />
</RelativeLayout>
适配器类的存根:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder viewHolder;
if (convertView == null) {
convertView = LayoutInflater.from(mContext).inflate(R.layout.photo, parent, false);
viewHolder = new ViewHolder();
viewHolder.photoImageView = (ImageView) convertView.findViewById(R.id.photoView);
mInitialWidth = convertView.getLayoutParams().height;
convertView.setTag(viewHolder);
} else
viewHolder = (ViewHolder)convertView.getTag();
Photo photo = mPhotoList.get(position);
if (position != 0) {
RelativeLayout.LayoutParams params = convertView.getLayoutParams();
params.width = (int) (mInitialWidth * 0.5f);
}
viewHolder.photoImageView.setBackgroundDrawable(photo.getDrawable());
return convertView;
}
static final class ViewHolder {
ImageView photoImageView;
}
答案 0 :(得分:1)
使用RecyclerView和自定义LayoutManager解决它。在onLayoutChildren方法中执行所有魔法。特别是测量所有视图和布局。