我想這樣 Layout where an image at the bottom and two text block at rightAndroid的佈局圖像和兩個文本框右側
佈局這是一個非常簡單的佈局與右左,兩個文本塊的圖像。我知道如何在HTML和CSS
中做到這一點,但不知道如何在XML
中做到這一點。什麼是浮動元素向左或向右的屬性?現在,如果我添加一個圖像和兩個文本塊,第二個文本塊不顯示。
我想這樣 Layout where an image at the bottom and two text block at rightAndroid的佈局圖像和兩個文本框右側
佈局這是一個非常簡單的佈局與右左,兩個文本塊的圖像。我知道如何在HTML和CSS
中做到這一點,但不知道如何在XML
中做到這一點。什麼是浮動元素向左或向右的屬性?現在,如果我添加一個圖像和兩個文本塊,第二個文本塊不顯示。
<?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>
編輯你自己: )
您可以使用相對佈局參見:
<?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>
試試這個代碼,我測試過它:
<?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>
imageView不必位於LinearLayo內部UT。你可以刪除父線性佈局,然後將weight-property賦給imageView。 –
你是對的。我編輯了我的答案 – Ricardo