亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Android 應用中使用TextView時出現imageview被壓縮如何解決

發布時間:2020-12-02 17:03:18 來源:億速云 閱讀:227 作者:Leah 欄目:移動開發

在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被壓縮如何解決的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巴东县| 深水埗区| 余干县| 商丘市| 北票市| 吉木萨尔县| 山西省| 孙吴县| 永年县| 同心县| 孝昌县| 遂昌县| 盘锦市| 临夏县| 星子县| 方山县| 石柱| 北流市| 封丘县| 武安市| 平罗县| 贵阳市| 原平市| 双峰县| 无为县| 南江县| 酉阳| 枣庄市| 嫩江县| 城市| 犍为县| 连城县| 咸阳市| 页游| 武城县| 浠水县| 湖州市| 雷波县| 肇东市| 昌邑市| 固阳县|