我有一個問題,我已經試着用搜索引擎和其他方式尋找,但我不知道該怎麼尋找...Android的佈局XML屬性和定位...
我的佈局是這樣的:
_______________________________________________________
| | | |
| | | |
| content | button | |
| | | |
|___________|________|__________________________________|
但如果我補充一點它看起來就像這樣:
_______________________________________________________
| | | |
| | | |
| content | button | |
| | | |
|_________________________|________|____________________|
但當含量低於包裝大我要讓內容滾動,但顯示出在包裝結束按鈕喜歡這樣的:
_______________________________________________________
| | |
| | |
| scrollable content | button |
| | |
|______________________________________________|________|
所以它不會不管有多少內容有,該按鈕將始終可見,內容將是horizontaly scollable :)
我的代碼,現在是這樣的,但我不知道我該怎麼做,我可以得到它像我想要的:
<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>
您是否試圖將您的linearlayout與您的按鈕放在horizontalscrollview中? – maebe 2012-02-28 11:31:58
如果我這樣做,按鈕VILL disapear時滾動視圖充滿 – Alioooop 2012-02-28 11:44:40