Wednesday 3 June 2015

Android : Locating the item at center position of the screen after selecting it - horizontalscrollview

Android : Locating the item at center position of the screen after selecting it -horizontalscrollview





Horizontal.xml
<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical"
    tools:context=".MainActivity" >

  <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/bottom"
        android:orientation="vertical" >

       <HorizontalScrollView
                android:id="@+id/scrollView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/updown"
                android:layout_weight="0.8"
                android:fadingEdgeLength="0dp" >

                <LinearLayout
                    android:id="@+id/horizontalbar"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@android:color/background_dark"
                    android:baselineAligned="true"
                    android:orientation="horizontal" >
                </LinearLayout>
       </HorizontalScrollView>
  </LinearLayout>
</RelativeLayout>


2.horizontal.java


package your packagename

import android.app.Activity;
import android.graphics.Point;
import android.os.Bundle;
import android.view.Display;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.HorizontalScrollView;
import android.widget.LinearLayout;

public class horizontal extends Activity
{
HorizontalScrollView hsl;
    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.horizontal);
      hsl = (HorizontalScrollView) findViewById(R.id.scrollView);
      LinearLayout l1 = (LinearLayout)findViewById(R.id.horizontalbar);
      Display display = getWindowManager().getDefaultDisplay();
      Point size = new Point();
      display.getSize(size);
      final int width = size.x;

        for(int i = 0; i < 20; i++)
        {
            final Button b = new Button(this);
            b.setText("t"+i);
            
            
            b.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View v) {
                   int scrollX = (b.getLeft() - (width / 2)) + (b.getWidth() / 2);
                   hsl.smoothScrollTo(scrollX, 0);
                }

            });
            l1.addView(b);
            
            
            
        }
     }
}

No comments:

Post a Comment