如何使用具有三种布局的视图翻转器?
我目前正在使用 ViewFlipper
进行我的主要活动,具有两种不同的布局。我想使用第三种布局,但只能找到 showNext()
和 showPrevious()
命令。有人可以告诉我如何使用 ViewFlipper 实现第三种布局吗?
I am currently using ViewFlipper
for my main activity with two different layouts. I want to use a third layout, but I can only find the showNext()
and showPrevious()
commands. Can someone show me how to implement a third layout using ViewFlipper
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为您制作了一个示例,展示如何在 ViewFlipper 中显示不同的视图。
该示例的布局由以下部分组成。有三个单选按钮。 ViewFlipper 放置在单选按钮下方。该脚蹼拥有三个不同的简单视图和不同的文本。
然后,单选按钮连接到 java 代码中的侦听器,该侦听器将根据当前选择的单选按钮更改 ViewFlipper 显示的视图。
XML
JAVA
Made an example for you that shows howto display different views in a ViewFlipper.
The layout of the example is made up of the following parts. There are three radio buttons. A ViewFlipper is placed below the radio buttons. This flipper holds three different simple views with different texts.
The radio buttons are then hooked up to a listener in the java code that will change the view displayed by the ViewFlipper depending on which radio button that currently is chosen.
XML
JAVA
请参阅 android.widget.ViewFlipper 的简单用法。有了它,您可以从 xml 创建不同的布局,然后使用简单的方法在它们之间切换,如下所示:
带有树布局的 Xml 示例:
See this simple use of android.widget.ViewFlipper. With it you can create different layout from xml and then switch among them with simple method like this:
Xml example with tree layouts:
您也可以通过这种方式使用它。我已附上 java 代码和 xml 文件,其中使用按钮来更改脚蹼视图。
XML 代码-
You can use it in this way also. I have attached the java code and xml file where a button is used to change the flipper view.
XML CODE-
语言
Java
xml
Java