私はFinger Paint APIデモを試していますが、ボタンを追加しようとしています。私は含まれているビューを使用してレイアウトにボタンを追加
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<view
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.triopsys.imosandroid.ViewControllers.SignatureViewController$MyView" />
</LinearLayout>
私のレイアウトxmlでは、このビューの上部または下部にボタンを追加することはできません。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/buttonCancel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Cancel" >
</Button>
<Button
android:id="@+id/buttonOk"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="OK" >
</Button>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<view
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.triopsys.imosandroid.ViewControllers.SignatureViewController$MyView" />
</LinearLayout>
</LinearLayout>
しかし、これは機能しません。あなたのボタンをラップレイアウトに
android:orientation="horizontal"
を追加
エラーが発生しましたか? – iTurki