在我的应用程序中,我有一个非常基本的指南针,它通过一个类在我的活动中呈现。我正在尝试使用布局显示指南针。因此,我可以包含文本框和按钮,而不是只有一个带有指向北方的线的圆圈。如何在布局中渲染它?目前我的活动设置内容视图如下:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
compassView = new CompassView(this);
setContentView(compassView);
我试过setContentView(R.layout.activity_display_compass)
哪个是我的 xml 文件,但它只显示"hello world"
(TextView
),而不是指南针。请参阅下面的我的 xml 文件。
xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"/>
<View
class = "com.example.gpsfinder.CompassView"
android:id="@+id/compassView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
任何指导将不胜感激。