回答

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

<LinearLayout 
    android:layout_width="0dp" 
    android:layout_height="match_parent" 
    android:layout_weight="1" 
    android:orientation="vertical"> 

<TextView 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"/> 

<TextView 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"/> 

</LinearLayout> 

    <ImageView 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:layout_height="match_parent" /> 
</LinearLayout> 

編輯你自己: )

0

您可以使用相對佈局參見:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_height="wrap_content" 
      android:layout_width="match_parent"> 
    <ImageView android:id="@+id/img" 
      android:layout_height="wrap_content" 
      android:layout_width="wrap_content" 
      android:src="@drawable/ic_clear"/> 
    <TextView android:id="@+id/text1" 
      android:layout_height="wrap_content" 
      android:layout_toEndOf="@+id/img" 
      android:layout_toRightOf="@+id/img" 
      android:layout_width="match_parent" 
      android:text="text 1"/> 
    <TextView android:layout_below="@+id/text1" 
      android:layout_height="wrap_content" 
      android:layout_toEndOf="@+id/img" 
      android:layout_toRightOf="@+id/img" 
      android:layout_width="match_parent" 
      android:text="text 2"/> 
</RelativeLayout> 
1

試試這個代碼,我測試過它:

<?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="match_parent"> 

<ImageView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_gravity="center" 
    android:layout_weight="1"/> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_weight="1" 
    android:orientation="vertical"> 

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:gravity="center"/> 

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:gravity="center"/> 

</LinearLayout> 

+0

imageView不必位於LinearLayo內部UT。你可以刪除父線性佈局,然後將weight-property賦給imageView。 –

+0

你是對的。我編輯了我的答案 – Ricardo

相關問題