2017-12-09 14 views
0

私はアンドロイドに与えられたXMLコードのレイアウトをプレビューしようとしている:最終的なレイアウトビューに変更を加えた場合、相対レイアウトの方向属性が原因ですか?

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:orientation="horizontal" 
android:layout_width="match_parent" 
android:layout_height="@dimen/list_item_height" 
android:background="@color/tan_background"  
tools:context="com.example.android.miwok.ColorsActivity"> 
<ImageView 
    android:id="@+id/image" 
    android:src="@mipmap/ic_launcher" 
    android:layout_width="@dimen/list_item_height" 
    android:layout_height="@dimen/list_item_height" 
    /> 
<LinearLayout 
    android:id="@+id/text_container" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentTop="true" 
    android:layout_height="@dimen/list_item_height" 
    android:layout_toRightOf="@id/image"> 
</LinearLayout> 


</RelativeLayout> 

結果がhttps://i.stack.imgur.com/jzhir.png である。しかし、今、私はいつでも私は相対的なレイアウトの親ビューからの方位属性を削除しようとしていますことを見つけます同じコードのグループ(私がそれを記述するのが間違っている場合は正しい)、同じプレビューが得られていることがわかります。 上記の変更を行った後に得られたビューは、ここに示した通りです https://i.stack.imgur.com/MNbKF.png。これは、相対レイアウトにorientation属性を置いているかどうかは関係ありませんか?あるいは、アンドロイドのXMLの相対レイアウトの方向属性に隠された結果があります。

答えて

0

docsには、RelativeLayoutの方向引数はありません。

関連する問題