我有我的應用程序中的滾動視圖,在我的模擬器中運行良好,但不能在Android設備上工作.....我的應用程序開發與minsdkversion:8
...我部署我的應用在的android 2.2滾動視圖在模擬器中工作,但不能在Android設備上工作
我的佈局低於
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:scrollbars="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="#D2691E">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#D2691E"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Branch"
android:textColor="#000000"
android:textSize="30px"
/>
<Spinner android:id="@+id/group"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:prompt="@string/group_prompt"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Year"
android:textColor="#000000"
android:textSize="30px" />
<Spinner android:id="@+id/year"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
android:prompt="@string/year_prompt"
/>
<Button android:id="@+id/ok1_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content" android:text="Ok1" android:ems="5">
</Button>
</LinearLayout>
</ScrollView>
PLZ給予solution..Thanks
什麼設備上的問題? scrollview內的視圖被凍結? – 2012-04-06 08:58:03
@Rahul garg ya .....我不能在設備中滾動,但我可以在模擬器上滾動模擬器 – 2012-04-06 09:02:27
如何通過鼠標滾動按鈕或拖動光標滾動 – vipin 2012-04-06 09:05:04