androidfragment選項卡
發布時間: 2024-10-04 00:38:03
㈠ TabHost中怎麼做到返回下一頁面
!!!急!!!!! 一個切換選項卡TabHost 中有頁面1,頁面2,頁面3,頁面4。其中頁面一的頁面流程為登陸頁面- 注冊頁面;如何能夠在注冊頁面的時候還能返回到登陸頁面,當我在注冊頁面中調用finish()函數時,整個TabHost 頁面都結束了,從而程序退出了,請問如何能夠做到只是把注冊界面關閉了,然後就顯示了上一個登陸頁面呢?求大神指導,很急,分不夠我可以再給! ------解決方案-------------------------------------------------------- 引用: 有沒有類似與Activity 棧,關閉了注冊,登陸頁面就自動呈現了,因為要保持上一次登陸頁面用戶輸入的信息,重新載入的話是一張新頁面 引用: 如果你的是activity 跳轉的話設個tag 標記 你這個需求正是現在Android 推薦的Fragment 可以支持的 TabHost 選項卡別用Activity 展現,用Fragment,可以支持回退界面
㈡ 如何創建tab android
您好,很高興為您解答:
在創建Tab之前,先把Tab的結構搞清楚。它的結構是這樣的:
最外層是一個Tabhost,Tabhost里裝了些選項卡(TabSpec),每個選項卡有自己的指示符(Indicator,就是頂部可點的那個區塊)和內容(Content,下半部分展示內容的區塊)。
現在,要做的事情就很清楚了:
1、創建Tabhost
2、創建TabSpec並給TabSpec賦值
3、把TabSpec添加到Tabhost中
如果我的回答沒能幫助您,請繼續追問。
㈢ 如何實現android中三個單選按鈕橫向排列且只能選一個
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/row_item_margin">
<TextView
android:id="@+id/tvStorageWay"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="儲存方式:"/>
<RadioGroup
android:id="@+id/rgStorageWay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/tvStorageWay"
android:gravity="center_vertical"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rbPack"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="包裝"/>
<RadioButton
android:id="@+id/rbBulk"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="散裝"/>
<RadioButton
android:id="@+id/rbStorageWayOther"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="其它"/>
</RadioGroup>
</RelativeLayout>
熱點內容