Android - Horizo​​ntalScrollView:如何滚动浏览过去的视图?

时间:2014-02-24 01:01:02

标签: android user-interface horizontalscrollview

在我的应用中,我有HorizontalScrollView动态添加ImageButton。我想在滚动视图的右侧添加某种边距,或者某种方式“滚动过去”,因为缺少更好的单词,添加的项目为~100dp。我已经尝试调整scrollview的边距和填充及其子布局无济于事。

我制作了一个快速模型,模拟我想要的东西,使用空白View将滚动视图推得更远,我想这会起作用,只是处理起来会很痛苦。

一如既往,我非常感谢任何建议。

的活动:

import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.view.ViewGroup.LayoutParams;

public class MainActivity extends Activity {

    LinearLayout ll;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ll = (LinearLayout) findViewById(R.id.panel);
        LayoutParams params = ll.getLayoutParams();
        params.width = 100;
    }

    public void addClicked(View view){
        Button btn1 = new Button(this);
        btn1.setText("Button");
        ll.addView(btn1, ll.getChildCount()-1);
    }

}

main xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/base"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <HorizontalScrollView
        android:id="@+id/horizontalScrollView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="15" >

        <LinearLayout
            android:id="@+id/panel"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal" >

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

            <View
                android:id="@+id/view1"
                android:layout_width="100dp"
                android:layout_height="40dp" />

        </LinearLayout>
    </HorizontalScrollView>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:onClick="addClicked"
        android:text="Add" />

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

您需要在内部面板上设置正确的填充:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/base"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <HorizontalScrollView
        android:id="@+id/horizontalScrollView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="15" >

        <LinearLayout
            android:id="@+id/panel"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingRight="1000dp"
            android:orientation="horizontal" >

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

        </LinearLayout>
    </HorizontalScrollView>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:onClick="addClicked"
        android:text="Add" />

</LinearLayout>