我有一個滾動視圖在我的XML,但滾動視圖應該只在手機的風景模式下工作,但不是在phone.can肖像模式,這是可能的,如果可能的話,所以我應該與XML文件或通過programmatically.if代碼需要去詢問me.Thanks滾動視圖只禁用在縱向模式中的Android
這裏是XML文件(肖像模式):
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollview1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#1e90ff"
tools:context=".HomeActivity"
android:scrollbars="none"
>
<LinearLayout
android:id="@+id/layout01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#a9a9a9"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/my_tauky_button_img" />
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/explore_button_img"
android:text="" />
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/create_tauky_button_img" />
<Button
android:id="@+id/button4"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:background="@drawable/my_blauky_button_img" />
<Button
android:id="@+id/button5"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@drawable/profile_button_img" />
</LinearLayout>
</ScrollView>
發表您的xml文件 – R9J