HorizontalScrollView が右から左に動作するように設定するにはどうすればよいですか? デフォルトの動作では、最初のタブ (デフォルトのタブ) が左側から表示されます。タブを逆順に並べ替えて、最初の「デフォルト」タブが画面の右側に表示されるようにします。
それ、どうやったら出来るの?私はlayout_gravityを使用しましたが、うまくいきませんでした..
tabhost と HorizontalScrollView を含む私のレイアウトコードは次のとおりです。
<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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:scrollbars="none">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</HorizontalScrollView>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
</TabHost>