遇到“无法滚动”问题
- 我正在尝试获得一个具有水平滚动功能的定制垂直滚动条。
- 我试图在水平滚动条中放置 7 个垂直滚动条(@+id/verticalSeekbar、@+id/verticalSeekbar_2 等)。
- 我(在stackoverflow的帮助下)能够获得我的自定义垂直滚动条。
但是,我无法水平滚动它。我希望能够水平滚动,但它不起作用。附件是我想要的图像。这是我的代码Activity_vertical_slider
<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" >
<com.example.verticalsliderandroid.HScroll android:id="@+id/hScroll"
android:layout_width="400dp" android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/relative_layout_sample"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<com.example.verticalsliderandroid.VerticalSeekBar
android:id="@+id/verticalSeekbar"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:max="255"
android:progress="10"
android:rotation="180"
android:progressDrawable="@android:color/transparent"
android:thumb="@drawable/eco_seekbar" />
<com.example.verticalsliderandroid.VerticalSeekBar
android:id="@+id/verticalSeekbar_2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/verticalSeekbar"
android:max="255"
android:progress="10"
android:progressDrawable="@android:color/transparent"
android:rotation="180"
android:thumb="@drawable/eco_seekbar" />
</RelativeLayout>
</com.example.verticalsliderandroid.HScroll>
</RelativeLayout>
这是我的verticalseekbar.java
public class VerticalSeekBar extends SeekBar {
public VerticalSeekBar(Context context) {
super(context);
}
public VerticalSeekBar(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public VerticalSeekBar(Context context, AttributeSet attrs) {
super(context, attrs);
}
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(h, w, oldh, oldw);
}
@Override
protected synchronized void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(heightMeasureSpec, widthMeasureSpec);
setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
}
protected void onDraw(Canvas c) {
c.rotate(-90);
c.translate(-getHeight(), 0);
super.onDraw(c);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (!isEnabled()) {
return false;
}
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_MOVE:
case MotionEvent.ACTION_UP:
setProgress(getMax() - (int) (getMax() * event.getY() / getHeight()));
onSizeChanged(getWidth(), getHeight(), 0, 0);
break;
case MotionEvent.ACTION_CANCEL:
break;
}
return true;
}
}
我已经在互联网上进行了足够多的搜索。只是没有得到我需要的东西。请帮忙。