У меня проблема, и я пробовал поискать и искать в Google другими способами, но я не знаю, что искать ...
мой макет выглядит так:
_______________________________________________________
| | | |
| | | |
| content | button | |
| | | |
|___________|________|__________________________________|
но если я добавлю немного больше, это будет выглядеть так:
_______________________________________________________
| | | |
| | | |
| content | button | |
| | | |
|_________________________|________|____________________|
но когда содержимое больше обертки, я хочу сделать прокрутку содержимого доступной, но покажу кнопку в конце обёртки следующим образом:
_______________________________________________________
| | |
| | |
| scrollable content | button |
| | |
|______________________________________________|________|
Так что не имеет значения, сколько там контента, кнопка всегда будет видна, а контент будет горизонтально прокручиваться :)
мой код сейчас выглядит примерно так, но я не знаю, что делать, чтобы получить его так, как хочу:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="@dimen/TopBarHeight" >
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="@dimen/TopBarHeight" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="@dimen/TopBarHeight" >
<LinearLayout
android:layout_width="@dimen/TabMaxWidth"
android:layout_height="@dimen/TopBarHeight" />
<LinearLayout
android:layout_width="@dimen/TabMaxWidth"
android:layout_height="@dimen/TopBarHeight" />
<LinearLayout
android:layout_width="@dimen/TabMaxWidth"
android:layout_height="@dimen/TopBarHeight" />
<LinearLayout
android:layout_width="@dimen/TabMaxWidth"
android:layout_height="@dimen/TopBarHeight" />
<LinearLayout
android:layout_width="@dimen/TabMaxWidth"
android:layout_height="@dimen/TopBarHeight" />
<LinearLayout
android:layout_width="@dimen/TabMaxWidth"
android:layout_height="@dimen/TopBarHeight" />
</LinearLayout>
</HorizontalScrollView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="@dimen/TopBarHeight" >
<ImageButton
android:layout_width="@dimen/TopBarHeight"
android:layout_height="@dimen/TopBarHeight"/>
</LinearLayout>
</LinearLayout>