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

xml レイアウト ファイルでカスタムViewサブクラスを使用するには:

<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 に答える