android - How to locate tabs on the left side of screen? -


i implemented simple tab layout following tuturial.

in tutorial, tabs located on top of screen. there way locate tabs on left side of screen instead of locating tabs on top? how change layout xml file ?

<?xml version="1.0" encoding="utf-8"?> <tabhost xmlns:android="http://schemas.android.com/apk/res/android"     android:id="@android:id/tabhost"     android:layout_width="fill_parent"     android:layout_height="fill_parent">     <linearlayout         android:orientation="vertical"         android:layout_width="fill_parent"         android:layout_height="fill_parent"         android:padding="5dp">         <tabwidget             android:id="@android:id/tabs"             android:layout_width="fill_parent"             android:layout_height="wrap_content" />         <framelayout             android:id="@android:id/tabcontent"             android:layout_width="fill_parent"             android:layout_height="fill_parent"             android:padding="5dp" />     </linearlayout> </tabhost> 

tabactivty doesn't support handle tabs on left side here there possible alternative:

existing patches android tabwidget allow tabs on left-hand side?

another solution, write own tab widget: http://groups.google.com/group/android-developers/browse_thread/thread/6587ffd8ea4ed74a#


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -