我创建了一个自定义视图,其中绘制了位图。问题是自定义视图占用整个屏幕,无论我设置它或它的父级布局宽度/高度。
我一直在浏览论坛,我读过有关覆盖onmeasure方法的内容,但对于我来说,返回零,所以现在宽度和高度都设置为零。
这是我到目前为止所做的:
修改
FULL xml:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:sliderView="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
<RelativeLayout
android:id="@+id/cameraLayout"
android:layout_width="wrap_content"
android:background="@color/black"
android:layout_height="wrap_content">
<SurfaceView
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/surfaceview">
</SurfaceView>
<LinearLayout
android:layout_above="@+id/beerName"
android:id="@+id/beerColours"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/beer1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/beer1"
android:layout_weight="1"/>
<ImageView
android:id="@+id/beer2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/beer2"
android:layout_weight="1"/>
<ImageView
android:id="@+id/beer3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/beer3"
android:layout_weight="1"/>
<ImageView
android:id="@+id/beer4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/beer4"
android:layout_weight="1"/>
<ImageView
android:id="@+id/beer5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/beer5"
android:layout_weight="1"/>
<ImageView
android:id="@+id/beer6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/beer6"
android:layout_weight="1"/>
</LinearLayout>
<EditText
android:background="@color/black"
android:id="@+id/beerName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:layout_above="@+id/seperator"
android:hint="@string/beer_name"
android:textColorHint="@color/white"
android:gravity="center_horizontal"
/>
<ImageView
android:id="@+id/seperator"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/dotted_separator"
android:layout_above="@+id/sliderViewLayout"/>
<RelativeLayout
android:id="@+id/sliderViewLayout"
android:layout_above="@+id/bottomsUp"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.test.bottomsup.custom_slider_library.sliderView
android:layout_marginLeft="15dp"
android:id = "@+id/sliderview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
sliderView:diagonalSlide="false"
sliderView:translateAxisX="false"
/>
<ImageView
android:id="@+id/slider_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/glass"
android:layout_centerHorizontal="true"
android:layout_alignParentLeft="true">
</ImageView>
</RelativeLayout>
<com.test.bottomsup.custom.Components.ShadyButton
android:id="@+id/bottomsUp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/button_red"
android:textColor="@color/white"
android:text="@string/button_bottoms_up"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</RelativeLayout>
在我设置自定义视图的片段中有以下内容:
sliderView slider = (sliderView)view.findViewById(R.id.sliderview);
slider.setImageResource(R.drawable.beer_with_arrows);
slider.requestLayout();
然后在我的自定义视图类中,我按如下方式调用onMeasure:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int wrapHeight = getWidth();
int wrapWidth = getHeight();
this.setMeasuredDimension(wrapHeight, wrapWidth);
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
wrapHeight和wrapWidth返回为零。有人可以提供一些建议吗?我是自定义视图的新手,所以我很感激挖掘;)
**** **** EDIT 我应该补充说这是一个滑块,所以在我的自定义视图中我使用onscroll方法...我想这可能会改变一些事情。所以我有一个框架图像,我的视图在其下滚动,所以我想我需要将视图的高度设置为框架高度的两倍?
有人可以帮忙吗?
布局结构