回答
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
>
<TextView
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="0.75" />
<ImageView
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="0.25"
/>
</LinearLayout>
工程,在一分鐘內接受。精確到9分鐘。 – user2883477
在根LinearLayout中添加android:layout_weight =「1.0」不是更好嗎? – azerto00
您可以設置水平方向線性佈局和權重都的觀點。
只是一個水平方向添加其他的LinearLayout到您的垂直的LinearLayout:
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal">
<TextView
android:layout_height="0dp"
android:layout_width="wrap_content"
android:layout_weight="3" />
<ImageView
android:layout_height="0dp"
android:layout_width="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<!-- Others layout here -->
</LinearLayout>
這沒有奏效,我試過了。 – user2883477
您需要在TextView和ImageView中添加一些屬性。 –
我當然了。我錯過了android:layout_weight部分。查看答案Gooziec。 – user2883477
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
>
<TextView
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="0.75"
android:textStyle="bold" />
<ImageView
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="0.25"
/>
</LinearLayout>
你可以嘗試在TextView中還drawableRight
屬性..
- 1. 調整兩個TextView的在LinearLayout中旁邊的一個ImageView的
- 2. 在ListView中顯示TextView旁邊的ImageView
- 3. 在textView旁邊添加ImageView在同一行中
- 4. LinearLayout:左邊的TextViews,右邊的ImageView大
- 5. 漂浮一個ImageView旁邊的多個TextView元素
- 6. LinearLayout的ImageView和TextView不等於寬度
- 7. 的ImageView中的LinearLayout
- 8. Android:TextView旁邊的ImageView沒有顯示
- 9. 如何將TextView對齊屏幕中心,並將ImageView粘貼在屏幕旁邊?
- 10. Android - ImageView邊距不出現在LinearLayout
- 11. 如何在LinearLayout中將我的ImageView與我的TextView對齊?
- 12. 兩個textview和一個imageview在linearlayout中的位置
- 13. android垂直textview與圖像旁邊
- 14. textview下面的textview linearlayout
- 15. Linearlayout中的中心textview
- 16. 在LinearLayout中旋轉ImageView的
- 17. LinearLayout中的Android ImageView位置
- 18. 固定寬度TextView旁邊的可變寬度TextView
- 19. GridView與LinearLayout中的TextView
- 20. LinearLayout中的TextView和ListView
- 21. Android - ImageView上的TextView,邊界大小等於Imageview Size
- 22. 爲什麼我的TextView在LinearLayout中無邊框顯示?
- 23. 如何讓我的RelativeLayout出現在我的LinearLayout旁邊?
- 24. ImageView不顯示在LinearLayout中
- 25. 在LinearLayout中添加ImageView
- 26. 如何在Swift中將標籤與其旁邊的ImageView對齊?
- 27. Android:ListView問題在TextView中更改文本旁邊的圖像
- 28. Android將圖像視圖旁邊的textview集中到
- 29. 在LinearLayout中裁剪textView
- 30. textview未顯示在linearLayout中
什麼問題呢? – keshav