TextViewをImageButtonの左側に設定しようとしていますが、このオプションが見つからないようです。
android:layout_alignLeftのようなものを使用することを期待していましたが、このオプションがありません。
問題をグーグルで検索しようとしましたが、相対的な結果が見つかりませんでした。
それがないと、TextViewがImageButtonとオーバーラップするので、避けたいと思います。
アップデート
完全なxmlコードは複雑すぎますが、ここにその重要な部分があります。
<FrameLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:background="@color/white"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_toLeftOf="@+id/frameLayoutBalanceClosed">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/button_edit_nickname"
android:id="@+id/card_closed_control_editNickname" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/card_closed_description_nickname"
android:layout_margin="8dp" android:layout_gravity="left"/>
</FrameLayout>