需要在图片库底部显示链接。

发布于 2024-12-12 11:42:15 字数 267 浏览 0 评论 0原文

我正在使用图库视图在全屏显示图库视图中的图像。我已经使用了下面给出的建议: Android Gallery 全屏

图库视图很好。 但我想以 4:1 的比例垂直划分屏幕,并仅显示上述分区中的图像。在下部分区中,我想显示带有链接的文本。现在链接应该在默认浏览器中打开目标。

如何分割屏幕? 链接使用文本还是按钮哪个更好?

I am using gallery view to display images in a gallery view in full screen. I have used the suggestion given below:
Android Gallery fullscreen

The gallery view is fine.
But I want to divide the screen in 4:1 ratio vertically and display the image in the above partition only. In the lower partition, I want to display a text with link. Now the link should open the target in default browser.

How can i divide the screen?
And is it better to have text or button for the link?

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

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

发布评论

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

评论(1

清醇 2024-12-19 11:42:15

您可能需要像 teoREtik 所说的那样使用 LinearLayout 创建 xml。要访问该 xml 中的元素,您将需要以下内容:

LayoutInflater inflater = getLayoutInflater();
galleryLayout = inflater.inflate(R.layout.xml_name, parent, false);
Gallery gallery = (Gallery) galleryLayout.findViewById(R.id.gallery);

You might need to create an xml with LinearLayout like teoREtik said. To access it's elements in that xml, you will need the following:

LayoutInflater inflater = getLayoutInflater();
galleryLayout = inflater.inflate(R.layout.xml_name, parent, false);
Gallery gallery = (Gallery) galleryLayout.findViewById(R.id.gallery);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文