91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

在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

德州市| 黑龙江省| 阜阳市| 海原县| 石河子市| 柳州市| 赤水市| 怀化市| 金门县| 佛学| 娱乐| 青州市| 西城区| 恩施市| 奈曼旗| 苗栗市| 通州区| 英山县| 岳池县| 临城县| 繁峙县| 建德市| 封开县| 河池市| 璧山县| 渝中区| 长兴县| 宁国市| 陈巴尔虎旗| 文成县| 长白| 大足县| 云霄县| 东港市| 延庆县| 云阳县| 分宜县| 囊谦县| 涟源市| 锡林浩特市| 舒兰市|