单选按钮以获取选项卡的功能

时间:2013-10-10 08:12:01

标签: android radio-button android-tabhost

我正在寻找类似于tab widget的东西。


Is it possible to use multiple buttons on same form and get the look and feel of a tab widget?

  • 基本上,只需点击一下按钮,就可以打开一个新表单 填写一些值。

像Tabhost一样的功能

  • 如果是真的怎么去呢

  • 我看了很多地方,搜索了一些东西......我无法得到合适的东西 任何良好信息来源的教程

可以使用更好的单选按钮!

我是一个新的bie所以...请轻松地回答我:)

2 个答案:

答案 0 :(得分:4)

简短回复:您可以使用片段实现功能,有关详细信息,请参阅http://developer.android.com/guide/components/fragments.html。 基本上,你必须声明一个类似下面的布局

   (Vertical LinearLayout)
+---------------------------+
|      |      |      |      |
|  B1  |  B2  |  B3  |  B4  |  (LinearLayout with 4 Buttons)
|      |      |      |      |
+------+------+------+------+
|                           |
|                           |
|                           |
|                           |
|                           |
|       FRAGMENTS           |
|                           | (FrameLayout matching the parent)
|          AREA             |
|                           |
|                           |
|                           |
|                           |
|                           |
+---------------------------+

B1,B2,B3和B4是按钮(或复选框,或GUI用于选择当前视图的任何内容)。给定要显示的默认视图(片段),每次按下按钮都会更改片段区域中的片段(重置片段后面的堆栈)。

答案 1 :(得分:0)

使用按钮和ViewPager进行线性布局,您可以为ViewPager的每个视图添加布局,并基于点击移动到ViewPager的该视图。

请参阅:ViewPager