2017-08-04 9 views
0

カスタムのズームビューの下に相対レイアウトを配置します。相対レイアウトの内容でズームを取得する必要はありません。私は、その相対レイアウトの中央にボタンを配置したい。ここでカスタムのズームビューの下に相対レイアウトでボタンを配置します

は私の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> 
+0

なぜ相対レイアウトを使用してネストされたレイアウトを作成するのですか?あなたは単にlinearViewの下にbuttonViewを置くことができます.Layout –

答えて

1
<?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="vertical" 
android:background="@drawable/images"> 

<com.example.acer.myapplication.ZoomView 
    android:id="@+id/iop" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:gravity="center" 
    android:text="@string/twentyfive" /> 

<RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

     <Button 
      android:layout_centerInParent="true" 
      android:text="Button" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 

</RelativeLayout> 


</LinearLayout> 

は、コードをテストしたことはありませんが、うまくいけばそれが動作します。

+0

ありがとうございます。私が望むように働く。 – Devk

+0

あなたは歓迎です:) – AndroidGeek

1

はこれを試してみてください -

<?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="vertical" 
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" /> 

    <RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 
    <Button 
     android:id="@+id/button" 
     android:layout_width="wrap_content" 
     android:layout_height="45dp" 
     android:layout_centerHorizontal="true"/> //Or use android:layout_centerInParent="true" 

</RelativeLayout> 

</LinearLayout> 
+0

リニアレイアウトの向きを垂直に設定し、相対レイアウトが必要な場合は、その下にボタンを直接追加します。 – hsm59

+0

は私が望むように動作します。返信ありがとう。しかし、ここやそこで変更を加えなければならない。 – Devk

関連する問題