gpt4 book ai didi

android - 类似于 Google Catalogs 的水平 ListView

转载 作者:太空宇宙 更新时间:2023-11-03 12:23:28 25 4
gpt4 key购买 nike

如何制作类似于 Google Catalogs 中的水平 ListView ?

较大的主要区域是一个 viewpager,但底行是一个水平 ScrollView ,其中包含可点击的项目列表。我假设它是一个 ListView ,如果它是如何完成的?

我使用了此处其他问题中引用的开源“水平 ListView ”,但它的运行不如此 Google 应用程序中的那样流畅。

最佳答案

这绝对是一个画廊!

这里可以看到肯定是SDK自带的Gallery -> See Youtube video检查它运行的流畅程度;)

我从 Android.com 为自己制作了一份简短指南以供将来引用。我希望你也能使用它:

1) 打开 res/layout/main.xml 文件并插入以下内容:

<?xml version="1.0" encoding="utf-8"?>
<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>

2) 要在您的 onCreate() 方法中插入的代码:

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Gallery gallery = (Gallery) findViewById(R.id.gallery);
gallery.setAdapter(new ImageAdapter(this));

gallery.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView parent, View v, int position, long id) {
Toast.makeText(HelloGallery.this, "" + position, Toast.LENGTH_SHORT).show();
}
});
}

3) 在 res/values/目录中创建一个名为 attrs.xml 的新 XML 文件。插入以下内容:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="HelloGallery">
<attr name="android:galleryItemBackground" />
</declare-styleable>
</resources>

4) 返回您的 .java 文件,在 onCreate(Bundle) 方法之后,定义自定义 ImageAdapter 类:

public class ImageAdapter extends BaseAdapter {
int mGalleryItemBackground;
private Context mContext;

private Integer[] mImageIds = {
R.drawable.sample_1,
R.drawable.sample_2,
R.drawable.sample_3,
R.drawable.sample_4,
R.drawable.sample_5,
R.drawable.sample_6,
R.drawable.sample_7
};

public ImageAdapter(Context c) {
mContext = c;
TypedArray attr = mContext.obtainStyledAttributes(R.styleable.HelloGallery);
mGalleryItemBackground = attr.getResourceId(
R.styleable.HelloGallery_android_galleryItemBackground, 0);
attr.recycle();
}

public int getCount() {
return mImageIds.length;
}

public Object getItem(int position) {
return position;
}

public long getItemId(int position) {
return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView = new ImageView(mContext);

imageView.setImageResource(mImageIds[position]);
imageView.setLayoutParams(new Gallery.LayoutParams(150, 100));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setBackgroundResource(mGalleryItemBackground);

return imageView;
}
}

嗯...代码很简单,不过可以引用原始和较长的文档 here .

关于android - 类似于 Google Catalogs 的水平 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8420339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com