如何在eclipse中制作可滚动的行?

发布于 2025-01-01 08:18:28 字数 236 浏览 1 评论 0原文

我想知道如何在屏幕底部制作滚动条以预览拍摄的照片。 Stock ICS Gallery 使用我想要的精确滚动,但我不知道从哪里开始。

基本上我想做的是一个执行以下操作的应用程序: - 第一次打开应用程序时,屏幕底部会出现一个空白滚动条,并且还有一个按钮,单击后可打开手机上的库存相机 - 当您拍照时,图片会自动保存到应用程序自己的数据库中并显示在滚动条中 - 当拍摄多张照片时,滚动条将充满这些照片,

这样您就知道我想做什么。

I was wondering how to make scrollbar at the bottom of the screen for previewing taken photos. Stock ICS Gallery uses exact scrollable that I want, but I have no idea where to start..

Basiclly what I want to do is an app that does the following:
- when app is opened for the first time there is a blank scrollbar at the bottom of the screen and there is also a button which opens stock camera on the phone when clicked
- when you take a picture, picture is automaticly saved to applications own database and displayed in scrollbar
- when there are several pictures taken, scrollbar would be full of those pictures

Just so you have an idea what I want to do..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你爱我像她 2025-01-08 08:18:28

我不太确定你在这里的意思,但你可以使用像

layout.xml这样的Gallery

<Gallery android:id="@+id/gallery"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"/>

代码:

    Gallery g = (Gallery) findViewById(R.id.gallery);
    ImageAdapter adapter = new ImageAdapter(context);

    adapter.addImages(bitmaps);
    g.setAdapter(adapter);

I am not exactly sure what you mean here, but you could use a Gallery like

layout.xml:

<Gallery android:id="@+id/gallery"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"/>

code:

    Gallery g = (Gallery) findViewById(R.id.gallery);
    ImageAdapter adapter = new ImageAdapter(context);

    adapter.addImages(bitmaps);
    g.setAdapter(adapter);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文