我在RelativeLayout
中使用HorizontalScrollView
。它在1.6 + API上工作正常,但在1.5 API上,HorizontalScrollView
不滾動,問題是什麼?RelativeLayout中的HorizontalScrollView:在1.6 + API上正常工作,但不在1.5 API
在1.5 API(3)上,您只能看到HorizontalScrollView
的第一部分,並且根本沒有滾動,而它似乎在API4及更高版本上正常工作。
要回答的問題,這裏使用了一些代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:id="@+id/pscroll"
android:scrollbars="horizontal"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ad"
android:fillViewport="true"
android:scrollbarAlwaysDrawHorizontalTrack="true">
<LinearLayout android:orientation="horizontal" android:id="@+id/LinearLayout01" android:scrollbars="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageButton android:id="@+id/P1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageButton android:id="@+id/P2" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
你能發佈你用來創建佈局的標記嗎? –
另外,開發1.6版之前的android就像開發現代應用程序在windows 98上工作一樣。當然,有些商業案例,但是...在某些時候你應該放手:) – yep