我在android中定义了自定义视图。我已经在布局中设置它,使得最初布局具有0dp宽度,并且当触发按钮时,我为布局设置动画并增加其宽度,但问题是当我显示布局时我的自定义视图不会显示那里。多么奇怪的行为:S
修改
<LinearLayout
android:id="@+id/PieControlLayout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0"
android:background="@null"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.digitalaria.gama.wheel.Wheel
android:id="@+id/wheel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" >
</com.digitalaria.gama.wheel.Wheel>
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:1)
我解决了这个问题。动画结束后,我不得不回想起自定义视图的初始化函数。感谢大家的支持