0

ページに多数のボタンを配置する必要がある非常に基本的なアプリを開発しています。ページに表示されるボタンの数が限られているポイントの後の問題..残りはページの外にあるか、私がやりたいことは、50個のボタンがあると仮定して、あるページに25個のボタンを表示し、別のページに25個のボタンを表示したいということです。これが不可能な場合、少なくともボタンは失われておらず、スクロール ボタンなどを使用してアクセスできます。

試してみ<Scrollview>ましたが、役に立ちませんでした。

ここに私のレイアウトファイルがあります:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_gravity="center" >



    <TextView 
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:text="FUNNY SOUNDS"
        android:layout_gravity="center"
        android:layout_marginLeft="55sp"
android:id="@+id/tv"
 />
    <LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="8" >
   <Button
        android:id="@+id/b1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="History"
        android:layout_weight="2"
         android:background="@drawable/custom" />
   <Button
        android:id="@+id/b2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="History"
        android:layout_weight="2" 
         android:background="@drawable/custom"/>
   <Button
        android:id="@+id/b3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="History"
        android:layout_weight="2"
         android:background="@drawable/custom" />

    <Button
        android:id="@+id/b4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Go"
      android:layout_weight="2"
       android:background="@drawable/custom"/>
    </LinearLayout>


<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="8"
     >
    <Button
        android:id="@+id/b5"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Back"
        android:layout_weight="2" 
         android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b6"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Next" 
        android:layout_weight="2"
         android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b7"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Refresh" 
        android:layout_weight="2"
         android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b8"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="History"
        android:layout_weight="2"
         android:background="@drawable/custom"/>
</LinearLayout>


<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="8" >
    <Button
        android:id="@+id/b9"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Back"
        android:layout_weight="2"
         android:background="@drawable/custom" />

    <Button
        android:id="@+id/b10"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Next" 
        android:layout_weight="2"
        android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b11"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Refresh" 
        android:layout_weight="2"
        android:background="@drawable/custom"
        />

    <Button
        android:id="@+id/b12"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="History"
        android:layout_weight="2"
        android:background="@drawable/custom" />
</LinearLayout>

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="8" >
    <Button
        android:id="@+id/b13"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Back"
        android:layout_weight="2" 
        android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b14"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Next" 
        android:layout_weight="2"
        android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b15"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Refresh" 
        android:layout_weight="2"
        android:background="@drawable/custom"/>

    <Button
        android:id="@+id/b16"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="History"
        android:layout_weight="2"
        android:background="@drawable/custom" />
</LinearLayout>


</LinearLayout>

英語が下手で申し訳ありませんが、さらに説明していただければ幸いです。提案をありがとうございます。問題をどのように進めるべきですか。

4

1 に答える 1

0

ScrollViewそれぞれの前に使用してみてくださいLinearLayout

ScrollView は 1 つのビュー/レイアウトにのみ適用できることに注意してください。

したがって、すべてのレイアウトに対してそれを記述する必要があります。

<LinearLayout
    ....>
    <ScrollView
        ...>
        <LinearLayout
            ....>
            <Button
                 android:id="@+id/b1"
                 ..../>
            <Button
                 android:id="@+id/b2"
                 ..../>
            <Button
                 android:id="@+id/b3"
                 ..../>
        </LinearLayout>
    </ScrollView>
</LinearLayout>

それがうまくいくことを願っています。

于 2013-05-30T19:16:21.607 に答える