1. android 左右滑動+上下滑動 怎麼實現
下面用GridView就能實現,上面的左右滑動, 你網路下滑動菜單 有很多教程的。
2. android實現上下滑動
布局最外包一層滾動條
java"><ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
強制橫豎屏
在配置文件中對Activity節點添加android:screenOrientation屬性(landscape是橫向,portrait是縱向)
3. android開發中,怎麼實現上下滑動,不是ScrollView,我要的是一次滑動整個頁面,跟橫向滑動效果一樣。。
直接用intent跳轉到下個頁面啊 判斷用戶有向上滑動的手勢 就跳轉 然後設置一個 跳轉的動畫效果就可以了..
4. Android 怎麼去實現模擬網頁上下滑動
可以這樣,布局的話可以最外層的是個framelayout,上面嵌一個horizontalScrollview,對於horizontalScrollview左邊是透明的和屏幕同樣大小的view,右邊是你要顯示的內容,對於horizontalScrollview要重寫滑動事件,如果僅僅這樣的話,那麼最底層的菜單是無法點擊的,所以要在activity中重寫DispatchTouchEvent重新分配分發事件。同樣也可以實現列表中的手勢,因為他的android的觸摸事件是按層分發,直到找到消耗這個事件的那一層,然後實現onInteceptTouchEvent截斷,交給該層的onTouch函數處理。
5. android卡片上下切換特效
實現了在android實現左右滑動切換界面的效果
這是實現了在android實現左右滑動切換界面的效果,該效果的源碼下載,請到源碼天堂下載吧,喜歡的朋友可以研究一下。
布局文件
< xml version="1.0" encoding="utf-8" > <LinearLayout xmlns:android="; android:id="@+id/layContain" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" android:background="@drawable/bg" > <!-- android:background="#FFC0CB"--> <FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" > <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" > <LinearLayout android:id="@+id/layFirst" android:layout_width="400px" android:layout_height="fill_parent" android:orientation="vertical" android:layout_marginBottom="50dp" > </LinearLayout> <LinearLayout android:id="@+id/laySec" android:layout_width="400px" android:layout_height="fill_parent" android:orientation="vertical" > </LinearLayout> <LinearLayout android:id="@+id/layThird" android:layout_width="400px" android:layout_height="fill_parent" android:orientation="vertical" > </LinearLayout> <LinearLayout android:id="@+id/layFourth" android:layout_width="400px" android:layout_height="fill_parent" android:orientation="vertical" > </LinearLayout> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal|bottom" android:layout_marginBottom="40dp" > <TextView android:id="@+id/roll_dot1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="." android:textSize="50dp" android:textColor="#ffffff" /> <TextView android:id="@+id/roll_dot2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="." android:textSize="50dp" android:textColor="#000000" /> <TextView android:id="@+id/roll_dot3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="." android:textSize="50dp" android:textColor="#000000" /> <TextView android:id="@+id/
6. android中怎麼實現類似駕校一點通的滑動切換到下一題的效果
可以使用android 提供的viewpager控制項,就可以實現滑動切換下一個界面,也可以監聽手勢的滑動動作
7. 安卓智能機上下滑屏怎麼調成左右滑屏
你是說菜單界面?
如果手機默認的是上下滑動菜單的話,某些品牌是可以設置成左右滑動的(比如LG)
你可以在菜單界面下按設置鍵看看選項是否有排列方式
如果沒有,可以使用其他桌面
比如
Go桌面EX
touchwiz4.0桌面(三星的桌面)
點心桌面
等都是默認的橫向滑屏的
這些桌面在機鋒市場,安卓市場或安卓系統自帶的電子市場都可以搜索到
8. android開發app怎麼上下滑動
如果是布局,使用scrollview
如果是數據陳列,使用自定義listview
以上兩種布局,都是在數據超出屏幕高度時,實現上下滾動
9. 安卓手機自動向下滑屏的APP
安卓智能手機上下滑屏調成左右滑屏的方法:
1、啟動手機,進入手機的桌面;