1

在我的应用程序中,我有一个非常基本的指南针,它通过一个类在我的活动中呈现。我正在尝试使用布局显示指南针。因此,我可以包含文本框和按钮,而不是只有一个带有指向北方的线的圆圈。如何在布局中渲染它?目前我的活动设置内容视图如下:

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>

任何指导将不胜感激。

4

1 回答 1

0

View在 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"/>

    <com.example.gpsfinder.CompassView
        android:id="@+id/compassView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>

然后您可能需要在 Java 代码中添加其中一些构造函数

// you used this ctor when creating the view programmatically
public CompassView(Context context) {
    this(context, null);
    // add additional initialization here
}

// this constructor is needed for the class to be used in XML layout files!
public CompassView(Context context, AttributeSet attributeSet) {
    super(context, attributeSet);
    // add additional initialization here
}

// this constructor is needed for the class to be used in XML layout files,
//  with a class-specific base style
public CompassView(Context context, AttributeSet attributeSet, int defStyle) {
    super(context, attributeSet, defStyle);
    // add additional initialization here
}
于 2013-06-04T20:49:19.410 回答