2016-09-27 17 views
-2

実装方法スクロールバーとスクロールバーはアンドロイドアプリですか? 私はアンドロイドの開発に新しいですが、すぐに学ぶためにアンドロイドの開発者のウェブサイト以外のいくつかのウェブサイトを示唆しています。Androidスクロールビュー

+1

本、ツール、ソフトウェアライブラリ、チュートリアル、その他のオフサイトリソースをお勧めするか、見つけようとする質問は、オピニオン回答とスパムを引き付ける傾向があるため、スタックオーバーフローのトピックではありません。代わりに、問題を説明し、それを解決するためにこれまでに何が行われているかを記述します。 – Lexi

+0

YouTubeで検索する。 –

答えて

0

非常にシンプルな、あなたのAndroidメーカーを開きます新しいプロジェクト(空のプロジェクト)を作成します。そして、res/layout/activity_main.xmlでこのコードを置き換えます:私は、このウェブサイトを示唆してアンドロイドを学習するための

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fillViewport="true"> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <TextView android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="test1" /> 
     <TextView android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="test2" /> 
     <TextView android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="test3" /> 
     <TextView android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="test4" /> 
     . 
     . 
     . 
     . 
     . 

     <!-- something you want to display --> 
    </LinearLayout> 
</ScrollView> 

、それはあなたが(それの古い私にとって、それは初心者のために良いことだ)しようとするため、クリーンでクリアな例がたくさんあります。

https://www.tutorialspoint.com/android/index.htm

そして再びGoogleはあなたの親友です。

0

これは簡単な作業です。ScrollViewを使用してこれを実現できます。 Layoutをサイドaに入れてScrollViewとすると、あなたは準備が整いました。 1つのものScrollViewには、ChildViewは1つしか含めることができません。

例:ここでは

<ScrollView 
    android:width="match_parent" 
    android:height="match_parent" > 

    <LinearLayout 
     ....> 
     . 
     . 
     . 
    </LinearLayout> 

</ScrollView> 
2

は、垂直スクロールビューの例である:

<ScrollView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/scrollView" 
    android:layout_alignParentTop="true" 
    android:layout_alignParentStart="true"> 

    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"> 

     <Button 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="New Button" 
      android:id="@+id/button"/> 

     ... 
    </LinearLayout> 
</ScrollView> 

と水平スクロールビュー:

<HorizontalScrollView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/horizontalScrollView" 
    android:layout_below="@+id/scrollView" 
    android:layout_alignParentStart="true"> 

    <LinearLayout 
     android:orientation="horizontal" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"> 

     <Button 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="New Button" 
      android:id="@+id/button2"/> 

     ... 
    </LinearLayout> 
</HorizontalScrollView> 
関連する問題