18

押されたボタンに対応するように、水平スクロールビューの位置を設定しようとしています。これを使用して設定しようとしましたが、失敗しました:

HorizontalScrollView hsv = (HorizontalScrollView)findViewById(R.id.ScrollView);
int x, y;
x = hsv.getLeft();
y = hsv.getTop();
hsv.scrollTo(x, y);

これは何も起こらず、スクロールビューは影響を受けません。xml:

 <HorizontalScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/ScrollView"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:background="@null"
        android:scrollbars="none" >

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

            <Button
                android:layout_width="100dp"
                android:layout_height="fill_parent"
                android:layout_marginBottom="-5dp"
                android:text="btn0" 
                android:id="@+id/btn0"
                android:background="@drawable/yellow_btn" />

            <Button
                android:layout_width="100dp"
                android:layout_height="fill_parent"
                android:layout_marginBottom="-5dp"
                android:background="@drawable/yellow_btn"
                android:text="bnt1"
                android:id="@+id/btn1" />

            <Button
                android:layout_width="100dp"
                android:layout_height="fill_parent"
                android:layout_marginBottom="-5dp"
                android:background="@drawable/yellow_btn"
                android:text="btn2"
                android:id="@+id/btn2" />

            <Button
                android:layout_width="100dp"
                android:layout_height="fill_parent"
                android:layout_marginBottom="-5dp"
                android:background="@drawable/yellow_btn"
                android:text="btn3"
                android:id="@+id/btn3" />

      <Button
                android:layout_width="100dp"
                android:layout_height="fill_parent"
                android:layout_marginBottom="-5dp"
                android:background="@drawable/yellow_btn"
                android:text="btn4"
                android:id="@+id/btn4" />

      <Button
                android:layout_width="100dp"
                android:layout_height="fill_parent"
                android:layout_marginBottom="-5dp"
                android:background="@drawable/yellow_btn"
                android:text="btn5"
                android:id="@+id/btn5" />

        </LinearLayout>
    </HorizontalScrollView>

そのため、新しいアクティビティが開始されたときに 5 番目のボタン (画面外) が押された場合、新しいビューを設定して、水平スクロールビューが右端から左端まで開始されるようにします。

水平スクロールビューの位置を設定するにはどうすればよいですか?

4

2 に答える 2

35

現在、ボタンの位置ではなく、Horizo​​ntalScrollView の左上隅にスクロールしようとしています。次のように、ボタンの (x, y) 位置までスクロールしてみてください。

HorizontalScrollView hsv = (HorizontalScrollView) findViewById(R.id.ScrollView);
Button button = (Button) findViewById(R.id.btn5);
int x, y;
x = button.getLeft();
y = button.getTop();
hsv.scrollTo(x, y);

編集:

このコードを に配置すると、期待どおりに動作しませんonCreate()。を呼び出しsetContentView()ましたが、レイアウトはまだ測定も初期化もされていません。これは、 メソッドgetLeft()getTop()メソッドの両方が 0 を返すことを意味します。hsv.scrollTo()レイアウトが完全に初期化される前にスクロール位置を設定しようとしても効果がないため、 を後で呼び出す必要がありますonCreate()

動作すると思われるオプションの 1 つは、コードをonWindowFocusChanged()次の場所に配置することです。

@Override
public void onWindowFocusChanged(boolean hasFocus) {
    super.onWindowFocusChanged(hasFocus);

    HorizontalScrollView hsv = (HorizontalScrollView) findViewById(R.id.ScrollView);
    Button button = (Button) findViewById(R.id.btn5);
    int x, y;
    x = button.getLeft();
    y = button.getTop();
    hsv.scrollTo(x, y);
}

ただし、この関数はアクティビティがフォーカスを取得または失うたびに呼び出されるため、意図したよりも頻繁にスクロール位置を更新することになる可能性があります。

より洗練された解決策は、Horizo​​ntalScrollView をサブクラスonMeasure()化し、ビューが初期化されたことを確認した後でスクロール位置を に設定することです。これを行うために、レイアウトを 2 つのファイルに分割し、MyHorizo​​ntalScrollView という名前の新しいクラスを追加しました。

package com.theisenp.test;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.HorizontalScrollView;

public class MyHorizontalScrollView extends HorizontalScrollView {

    public MyHorizontalScrollView(Context context) {
        super(context);
        addButtons(context);
    }

    public MyHorizontalScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
        addButtons(context);
    }

    /**
     * Inflates the layout containing the buttons and adds them to the ScrollView
     * @param context
     */
    private void addButtons(Context context) {
        View buttons = inflate(context, R.layout.buttons, null);
        addView(buttons);

    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

        //Find button 5 and scroll to its location
        View button = findViewById(R.id.btn5);
        scrollTo(button.getLeft(), button.getTop());
    }
}

MyHorizo​​ntalScrollView が作成されると、自動的に膨張してボタン レイアウトが追加されます。次に、スーパーを呼び出した後onMeasure()(レイアウトの初期化が完了したことがわかるように)、スクロール位置を設定します。

これが新しい main.xml です。これには新しい MyHorizo​​ntalScrollView のみが含まれていますが、Linear または Relative レイアウト内に簡単に配置して、他のビュー要素を追加することができます。( com.theisenp.testMyHorizo​​ntalScrollView があるパッケージの名前に置き換えます):

<?xml version="1.0" encoding="utf-8"?>
<com.theisenp.test.MyHorizontalScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:background="@null"
android:scrollbars="none" />

これは、MyHorizo​​ntalScrollView によって自動的に拡張される buttons.xml レイアウトです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="horizontal" >

    <Button
    android:id="@+id/btn0"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="-5dp"
    android:text="btn0" />

    <Button
    android:id="@+id/btn1"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="-5dp"
    android:text="bnt1" />

    <Button
    android:id="@+id/btn2"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="-5dp"
    android:text="btn2" />

    <Button
    android:id="@+id/btn3"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="-5dp"
    android:text="btn3" />

    <Button
    android:id="@+id/btn4"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="-5dp"
    android:text="btn4" />

    <Button
    android:id="@+id/btn5"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="-5dp"
    android:text="btn5" />

</LinearLayout>
于 2012-05-08T23:38:58.853 に答える
15

これは古い質問ですが、最近同じ問題に遭遇し、さらに別の複雑ではない解決策を見つけました。

元の質問で指定されたレイアウト ファイルを想定し、アクティビティが指定されたレイアウトで開始された場合、水平スクロール ビューをボタン 5 までスクロールする必要があると仮定します。

ボタン 5 までスクロールするには、次のコードをonCreate()アクティビティのメソッドに追加します。

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Some code such as layout inflation.

        final HorizontalScrollView hsv = (HorizontalScrollView) findViewById(R.id.ScrollView);

        // Scrolling to button 5.
        hsv.post(new Runnable() {
            @Override
            public void run() {
                // Get the button.
                View button = findViewById(R.id.btn5);

                // Locate the button.
                int x, y;
                x = button.getLeft();
                y = button.getTop();

                // Scroll to the button.
                hsv.scrollTo(x, y);
            }
        });
    }
}
于 2014-11-18T11:49:33.967 に答える