私のアプリには、クラスを介してアクティビティ内でレンダリングされる非常に基本的なコンパスがあります。コンパスをレイアウトで表示しようとしています。したがって、北を指す線のある円だけではなく、テキスト ボックスとボタンを含めることができます。これをレイアウト内でレンダリングするにはどうすればよいですか? 現在、私のアクティビティはコンテンツビューを次のように設定しています:
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>
ガイダンスをいただければ幸いです。