我有這樣的佈局:安卓的LinearLayout文本和圖標
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:azeoo="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/opening_today_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp">
<TextView
android:id="@+id/opening_today"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end"
android:text="A standard line" />
<ImageView
android:layout_toRightOf="@id/opening_today"
android:layout_width="32dp"
android:layout_height="32dp"
android:paddingLeft="8dp"
android:src="@drawable/ic_arrow_drop_down" />
</RelativeLayout>
</LinearLayout>
結果是:
但是,如果我把一個長文本 「opening_today」 像爲例「非常非常非常長的一行,並帶有很多帶有橢圓大小寫的文本「,ImageView消失了:
那麼,我該怎麼辦才能保持的ImageView連文本都有大尺寸?
Textview有一個'drawableRight'屬性。你不需要單獨的ImageView –
爲什麼不使用[Spinner](https://developer.android.com/guide/topics/ui/controls/spinner.html)? – CaptJak