我需要滚动到 HorizontalScrollView 的 childView(TextView) 的中心。我已经使用下面的代码获得了中心孩子,现在我想将箭头调整到该孩子视图的确切中心。
在这里,我所做的是我拿了一个 HorizontalScrollView,在里面有一个 LineaerLayout,在 LinearLayout 里面我有 TextViews。
这是我的 XML:
<com.sample.test.ScrollViewCustom
android:id="@+id/mHorizontalScrollViewMain"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/relativeOne"
android:background="@drawable/mergethree2"
android:scrollbars="none" >
<LinearLayout
android:id="@+id/llayoutfirst"
android:layout_width="wrap_content"
android:layout_height="55dip"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtHome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="home"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtSchools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="schools"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtCalendar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="calendar"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtActivitiesAndClubs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="activitiesandclubs"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtBoosters"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="boosters"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtSchoolMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="schoolmenu"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtStaff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="staff"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtMyFavorites"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="myfavorites"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
<TextView
android:id="@+id/mtxtAboutContact"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_marginTop="8dip"
android:text="aboutcontact"
android:textColor="@android:color/white"
android:textSize="15sp"
android:typeface="serif" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dip"
android:background="@drawable/blackline" />
</LinearLayout>
</com.sample.test.ScrollViewCustom>
我想要的是,我希望箭头正好位于屏幕中心的 TextView 中心。如下图。
我现在得到的是..
我已经使用以下代码获得了孩子的中心,但现在我的要求是滚动到该孩子的屏幕中心。
这是我的代码:
scroll.setOnScrollStopListner(new onScrollStopListner() {
@Override
public void onScrollStoped() {
int scrollX = scroll.getScrollX();
int width = lLayOne.getChildAt(1).getWidth();
int home = width;
int school = width * 2;
int calender = width * 3;
int activityNclubs = width * 4;
int booster = width * 5;
int schoolMenu = width * 6;
int staff = width * 7;
int myFav = width * 8;
int about = width * 9;
if ( scrollX > 0 && scrollX < home ) {
Log.d(TAG, "Home "+" scrollx "+scrollX+" home "+home);
}else if ( scrollX > home && scrollX < school ) {
Log.d(TAG, "school"+" scrollx "+scrollX+" school "+school);
}else if ( scrollX > school && scrollX < calender ) {
Log.d(TAG, "calender"+" scrollx "+scrollX+" calender "+calender);
}else if ( scrollX > calender && scrollX < activityNclubs ) {
Log.d(TAG, "activity n clubs"+" scrollx "+scrollX+" activity "+activityNclubs);
}else if ( scrollX > activityNclubs && scrollX < booster ) {
Log.d(TAG, "booster"+" scrollx "+scrollX+" booster "+booster);
}else if ( scrollX > booster && scrollX < schoolMenu ) {
Log.d(TAG, "school menu"+" scrollx "+scrollX+" school menu "+schoolMenu);
}else if ( scrollX > schoolMenu && scrollX < staff ) {
Log.d(TAG, "staff"+" scrollx "+scrollX+" staff "+staff);
}else if ( scrollX > staff && scrollX < myFav ) {
Log.d(TAG, "myFav"+" scrollx "+scrollX+" fav "+myFav);
}else if ( scrollX > myFav && scrollX < about ) {
Log.d(TAG, "about"+" scrollx "+scrollX+" about "+about);
} // TODO Auto-generated method stub
}
});