0

我在滚动视图下有图像。我有一个点击事件的按钮。当我单击按钮时,我需要显示滚动视图。但是当我安装应用程序时,滚动视图会自动显示页面底部。

代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    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=".Scroll" >

    <HorizontalScrollView
        android:id="@+id/scrl"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="250dp" >

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

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access"
                />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access1"


                 />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"

                android:background="@drawable/access2"
                />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access3"
                 />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access4"
                />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access5"
                 />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access6"
                 />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access7"
                 />

            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/access8"
                 />


        </LinearLayout>
    </HorizontalScrollView>



    <Button 
        android:id="@+id/btn"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

按钮点击:

Button btn=(Button)findViewById(R.id.btn);

btn.setOnClickListener(new OnClickListener(){

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

    HorizontalScorllView    srl=(HorizontalScrollView)findViewById(R.id.scrl);      

            }



        });
4

2 回答 2

1

默认情况下,将 android:id="@+id/scrl" 的可见性设置为在 xml 中不可见。单击按钮 Horizo​​ntalScorllView srl=(Horizo​​ntalScrollView)findViewById(R.id.scrl);
将 srl 的可见性设置为可见。

于 2013-07-09T09:57:35.543 回答
0

您应该将 Horizo​​ntalScrollView 设置为不可见:

<HorizontalScrollView
    android:id="@+id/scrl"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:visibility="invisible"
    android:layout_marginTop="250dp" >

并在您的 onClick 方法中:

public void onClick(View v) {

     HorizontalScorllView    srl=(HorizontalScrollView)findViewById(R.id.scrl);  
     srl.setVisibility(View.VISIBLE);

}
于 2013-07-09T10:18:47.523 回答