我已經使用HorizontalScrollView
創建了一個水平滾動視圖,但它具有Android默認樣式。所以我想創建一個水平滾動而不使用HorizontalScrollView
。Android水平滾動
這是可能的,如果是的話我該怎麼辦?
我已經使用HorizontalScrollView
創建了一個水平滾動視圖,但它具有Android默認樣式。所以我想創建一個水平滾動而不使用HorizontalScrollView
。Android水平滾動
這是可能的,如果是的話我該怎麼辦?
是的,你可以使用Viewpager獲得水平視圖滾動。
檢查此鏈接:
http://developer.android.com/training/animation/screen-slide.html
也這樣:
http://androidtrainningcenter.blogspot.com/2012/10/viewpager-example-in-android.html
這:
https://github.com/AndroidBegin/Android-ViewPager-Gallery-Images-and-Texts-Tutorial
更新:
另一種選擇,你可以使用TAB VIEW滾動:
檢查此鏈接:
http://developer.android.com/design/building-blocks/tabs.html
或
http://www.androidhive.info/2011/08/android-tab-layout-tutorial/
或
http://just-another-blog.net/programming/how-to-implement-horizontal-view-swiping-with-tabs/
希望這有助於
所有這些教程都是整頁滾動。我想讓瀏覽器在標籤中使用。例如海豚瀏覽器https://lh6.ggpht.com/zHkQ36ZYs9fuGnpqYtkJjxt-Ynl_lzXrQASnkbbsyboU0bLXPASBfTztZCFwg0JcJ4o=h900-rw – Enve
@啓用檢查更新回答 – androidqq6
也許這可以幫助。
HorizontalScrollView.java:
import android.os.Bundle;
import android.app.Activity;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
activity_main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button4" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button5" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button6" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button7" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button8" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button9" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button10" />
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
是的我已經有這樣的東西,但我想使它沒有'HorizontalScrollView' – Enve
我已經找到一種方法來做到這一點: [http://stackoverflow.com/a/33339420](http ://stackoverflow.com/a/33339420) –