3

カスタムビューでView::scrollBy(int, int)スクロールする機能を使用しようとしています。LinearLayout問題は、ビューの高さが追加されると、LinearLayoutスクロールWRAP_CONTENT時にコンテンツがクリップされることです。ただし、ビューの高さが固定されている場合 (たとえば 20px)、この問題は発生しません。WRAP_CONTENT固定高さの代わりに使用したい。これどうやってするの?

問題を再現するために、この簡単なコードを書きます。この画像で問題を確認できます。

クリップされた LinearLayout

コード:

public class Scroll extends LinearLayout {
    private final Context context;

    private int currentY;

    public Scroll(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.context = context;

        LayoutInflater.from(context).inflate(R.layout.scroll, this, true);

        LayoutParams params1 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        LayoutParams params2 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, 19);

        fillRow((LinearLayout) findViewById(R.id.ll1), params1);
        fillRow((LinearLayout) findViewById(R.id.ll2), params2);
    }

    private void fillRow(LinearLayout linearLayout, LinearLayout.LayoutParams layoutParams) {
        for (int i = 0; i < 100; i++) {
            TextView textView = new TextView(context);
            textView.setBackgroundResource(android.R.color.white);
            textView.setLayoutParams(layoutParams);
            textView.setText(i + "");
            linearLayout.addView(textView);
        }
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        // Idea: https://stackoverflow.com/a/4991692/842697
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN: {
                currentY = (int) event.getRawY();
                break;
            }

            case MotionEvent.ACTION_MOVE: {
                int y2 = (int) event.getRawY();
                int scrollY = currentY - y2;
                currentY = y2;

                findViewById(R.id.ll1).scrollBy(0, scrollY);
                findViewById(R.id.ll2).scrollBy(0, scrollY);

                break;
            }
            case MotionEvent.ACTION_UP: {
                break;
            }
        }
        return true;
    }
}

R.layout.scrollこの XML はどこにありますか:

<?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="horizontal" >

    <LinearLayout
        android:id="@+id/ll1"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#FF0000"
        android:orientation="vertical" />

    <LinearLayout
        android:id="@+id/ll2"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#00FF00"
        android:orientation="vertical" />

</LinearLayout>

@Anne Droidは、この関連する質問の回避策についてコメントしています。しかし、私はそれの付随的な問題が好きではありません。

4

0 に答える 0