android控制滚动条滚动

来源:互联网 发布:葛优的网络意思是什么 编辑:程序博客网 时间:2024/03/28 21:40

android控制滚动条滚动

运行结果:

http://img.my.csdn.net/uploads/201304/01/1364816472_6783.png

主Activity:

public class MainActivity extends Activity {

private RelativeLayouttopbar;

private RelativeLayoutscroll;

private LayoutInflaterinflater;

private LinearLayouttopbarLinea;

private LinearLayoutscrollLinea;

private ButtonlastButton;

private ButtonnextButton;

View v1;

HorizontalScrollView v2;

LinearLayout v3;


@Override

protectedvoid onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

inflater = LayoutInflater.from(this);

topbar = (RelativeLayout)inflater.inflate(R.layout.topbar,null);

scroll = (RelativeLayout)inflater.inflate(R.layout.hscroll_bar,null);

topbarLinea = (LinearLayout)findViewById(R.id.topbar_linea);

scrollLinea = (LinearLayout)findViewById(R.id.scroll_linea);

lastButton = (Button)findViewById(R.id.the_last);

nextButton = (Button)findViewById(R.id.the_next);

topbarLinea.addView(topbar);

scrollLinea.addView(scroll);

v2 = (HorizontalScrollView)scroll.findViewById(R.id.hscroll_bar);

v3 = (LinearLayout)scroll.findViewById(R.id.content_linea);

addLastListener();

addNextListener();

// WindowManager manage=getWindowManager();

//     Display display=manage.getDefaultDisplay();

//     screenHeight=display.getHeight();

//     screenWidth=display.getWidth();

}

publicvoid addLastListener(){

lastButton.setOnClickListener(new OnClickListener() {


@Override

publicvoid onClick(View v) {

v2.smoothScrollTo(v2.getScrollX() - 100, 0);

}

});

}

publicvoid addNextListener(){

nextButton.setOnClickListener(new OnClickListener() {

@Override

publicvoid onClick(View v) {

v2.smoothScrollTo(v2.getScrollX() + 100, 0);

}

});

}

}

主布局文件:

<RelativeLayoutxmlns: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"

    tools:context=".MainActivity">


    <LinearLayoutandroid:id="@+id/topbar_linea"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content">

        

    </LinearLayout>

    

    <LinearLayoutandroid:id="@+id/scroll_linea"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:layout_below="@id/topbar_linea"

        android:layout_marginTop="20dp">

        

    </LinearLayout>

    

    <RelativeLayoutandroid:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:layout_marginTop="30dp"

        android:layout_below="@id/scroll_linea">

        

        <Buttonandroid:id="@+id/the_last"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:textSize="18sp"

            android:text="上一个"

            android:layout_alignParentLeft="true"

            android:layout_marginLeft="20dp"/>

        <Buttonandroid:id="@+id/the_next"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:textSize="18sp"

            android:text="下一个"

            android:layout_alignParentRight="true"

            android:layout_marginRight="20dp"/>

    </RelativeLayout>

</RelativeLayout>

滚动条布局文件:

<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    tools:context=".MainActivity">


    <HorizontalScrollView 

        android:id="@+id/hscroll_bar"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:scrollbars="none">

        

         <LinearLayoutandroid:id="@+id/content_linea"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content">

        

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京1"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京2"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京3"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京4"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京5"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京6"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京7"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京8"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京9"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        <TextViewandroid:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="北京10"

            android:textSize="18sp"

            android:layout_marginLeft="10dp"

            android:layout_marginRight="10dp"/>

        </LinearLayout>

    </HorizontalScrollView>

</RelativeLayout>

topbar布局文件:

<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    tools:context=".MainActivity">


    <TextView

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="topBar"

        android:gravity="center"

        android:textSize="20sp"/>

</RelativeLayout>


demo下载地址:

http://download.csdn.net/download/lyhdream/5210462





原创粉丝点击