我有一个基本“骨架”的xml
<RelativeLayout>
<FrameLayout>
<RelativeLayout>
<TextView>
</TextView>
<TextView>
</TextView>
</RelativeLayout>
<DrawView>
//The view that changes 1
</DrawVIew>
<EditText>
//The view that changes 2
</EditText>
</FrameLayout>
<RelativeLayout>
</RelativeLayout>
</RelativeLayout>
我想要的是使用代码使 DrawView 上升或下降,因此有时您可以使用 DrawView,而在其他时候您可以使用 EditText,但是会显示两个视图。
我怎样才能做到这一点?