2017-03-03 62 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> 
相關問題