您好,登錄后才能下訂單哦!
在Android 應用中使用TextView時出現imageview被壓縮如何解決?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
代碼示例如下:
<!--文本少的item--> <LinearLayout android:id="@+id/ll" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#e6e9ed" android:gravity="center_vertical|right"> <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="bottom" android:text="我們右邊引用的是同一張圖片" android:textSize="16sp" /> <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="17dp" android:layout_marginRight="23dp" android:background="@drawable/test" /> </LinearLayout> <!--文本多的item--> <LinearLayout android:id="@+id/ll" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:background="#e6e9ed" android:gravity="center_vertical|right"> <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="bottom" android:text="我們右邊引用的是同一張圖片,我字數多" android:textSize="16sp" /> <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="17dp" android:layout_marginRight="23dp" android:background="@drawable/test" /> </LinearLayout>
可以發現,第二個布局中,右邊圖片被“擠扁”了。為什么會出現這種情況?其實很簡單,是textview寬度自適應搞的鬼。水平線形布局中,我們雖然設置了imageview與左右的偏移(margin)值,但是由于自布局textview與imageview是按順序排列的,textview會首先完成它的自適應,導致字數過多的時候會把右邊的imageview壓縮,此時imageview的左右margin值還是我們設置的。
那么,怎么設置才能讓文本框顯示較多文字而又不擠壓右邊的imageview呢?
答案很簡單,還是要在textview的寬度上做文章了。只需要:
textview的width屬性依然設置為:wrap_content自適應,再加上一個權重屬性即可:weight="1".這樣,textview就會占據水平剩下的空間,而不會去擠壓右邊的imageivew了。
代碼如下:
<LinearLayout android:id="@+id/ll" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:background="#e6e9ed" android:gravity="center_vertical|right"> <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:ellipsize="end" android:gravity="bottom" android:singleLine="true" android:text="我們右邊引用的是同一張圖片,我字數多" android:textSize="16sp" /> <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="17dp" android:layout_marginRight="23dp" android:background="@drawable/test" />
看完上述內容,你們掌握在Android 應用中使用TextView時出現imageview被壓縮如何解決的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。