2017-03-03 12 views

答えて

1

RelativeLayoutの助けを借りて、これを実現するには、imageviewのalignTop属性とalignBottom属性をtextviewに設定します。

+0

ありがとうございました。それは今働く。 :) –

0

これを試してください。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal" android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <LinearLayout 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:gravity="center" 
     android:layout_height="match_parent"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:src="@mipmap/ic_launcher"/> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:gravity="center" 
     android:layout_height="match_parent"> 

     <TextView 
      android:id="@+id/textView" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="TextViewsdfljasldfjl ;kasjdflkajslkdfasdfjlasjdfklasdklfjlkasdflkasdlkflkasdfasdfasdfasdfasdfasdf" /> 
    </LinearLayout> 
</LinearLayout> 
関連する問題