我想为我拥有的每个视图添加椭圆,但它似乎只将它添加到第一个布局中。有任何想法吗
这是我的xml代码
<RelativeLayout
android:id="@+id/first_plane"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</RelativeLayout>
<RelativeLayout
android:id="@+id/second_plane"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</RelativeLayout>
这些都在 LinearLayout 内
这是我正在尝试的代码
DrawOval firstOval = new DrawOval(this, 400, 20, 650, 100);
firstOval.setBackgroundColor(Color.TRANSPARENT);
ViewGroup firstLayout = (ViewGroup) findViewById(R.id.first_plane);
firstLayout.addView(firstOval);
DrawOval secondOval = new DrawOval(this, 200, 150, 450, 230);
secondOval.setBackgroundColor(Color.TRANSPARENT);
ViewGroup secondLayout = (ViewGroup) findViewById(R.id.second_plane);
secondLayout.addView(secondOval);
谢谢你