カスタムのズームビューの下に相対レイアウトを配置します。相対レイアウトの内容でズームを取得する必要はありません。私は、その相対レイアウトの中央にボタンを配置したい。ここでカスタムのズームビューの下に相対レイアウトでボタンを配置します
は私のXMLです:
<?xml version="1.0" encoding="utf-8"?>
<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="wrap_content"
android:orientation="horizontal"
android:background="@drawable/images">
<com.example.acer.myapplication.ZoomView
android:id="@+id/iop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/twentyfive" />
</LinearLayout>
なぜ相対レイアウトを使用してネストされたレイアウトを作成するのですか?あなたは単にlinearViewの下にbuttonViewを置くことができます.Layout –