您提到的按钮在您的活动的布局 XML 文件中?如果是这样,你能提供代码吗?setContentView() 只会显示圆圈。如果要将圆圈添加到现有布局中,则必须将其添加到 Activity 的 XML 中的 ViewGroup 中。
你可以这样做:
public class AnotherTest extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.anothertest_activity);
}
}
(res/layout/)anothertest_activity.xml 文件可能如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<your.package.Circle
android:id="@+id/myCircle"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
在 Android Studio 中,xml 代码的正下方是两个选项卡:“设计”和“文本”。切换到“文本”以粘贴代码,切换回“设计”以定位您的元素。
如果您拖动视图,您将拥有一个布局 XML 文件。在活动中,您需要将此文件设置为您的内容视图,否则您将看不到您的视图。但是您可以通过执行以下操作动态添加视图:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_viewgroup"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
在您的活动中:
public class AnotherTest extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Still your xml with your button but without circle
setContentView(R.layout.anothertest_activity);
// First find your ViewGroup to add Views to
RelativeLayout viewGroup = (RelativeLayout) findViewById(R.id.my_viewgroup);
// Add a new circle to existing layout
viewGroup.addView(new Circle());
}
}
您还可以动态添加所有内容:
public class AnotherTest extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ViewGroup viewGroup = new LinearLayout(this);
setContentView(viewGroup);
viewGroup.addView(new Button());
viewGroup.addView(new Circle());
}
}
但我强烈建议使用 xml 布局。可能想看看Android Layouts