回答
你必須要在這種情況下,兩個不同的TextViews並給比重= 「right」 做第二個
替換隨你的XML ...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical"
android:padding="5dip" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginBottom="3dip"
android:layout_marginTop="3dip"
android:background="#ffffff" >
<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="5"
android:padding="2dp"
android:text="Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum"
android:textColor="#454545"
android:textSize="9sp" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/by"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="15dp"
android:text="by john"
android:textColor="#454545"
android:textSize="9sp" />
</RelativeLayout>
</LinearLayout>
@Lucas Tan你有你的答案.. – Amardeepvijay
你確定這會工作嗎? 「通過約翰」顯示完全如我的截圖所示?它會重疊「loren ipsum」段嗎? – Lucas
@LucasTan如果最後一行沒有足夠的空間,那麼它應該在另一行,但仍然對齊rightIIts的作品。檢查它.... – Amardeepvijay
使用這個:希望這會起作用
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="horizontal"
android:padding="5dip" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="2dp"
android:text="Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren ipsum Loren Loren n ipsum Loren ipsum Loren ipsum Loren Loren ipsum"
android:textColor="#454545"
android:textSize="9sp" />
<TextView
android:id="@+id/by"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="15dp"
android:text="by john"
android:textColor="#454545"
android:layout_marginTop="14dp"
android:textSize="9sp" />
</RelativeLayout>
- 1. 初學者:對齊文本
- 2. 覆蓋打包者的版本,但沒有把它放在gem
- 3. TinyMCE的文本對齊按鈕不在線上編輯工作
- 4. 如何對齊的iframe文本基線?
- 5. 錯誤:否則無if。但我有後,立即把它放在它
- 6. 文本對齊不對齊
- 7. 文本對齊的文本
- 8. Python腳本停止工作時,我把它放在函數內
- 9. 文本下劃線和對齊中心
- 10. Html無線電選項文本對齊
- 11. 對齊文本
- 12. 對齊文本
- 13. 對齊文本
- 14. 對齊文本
- 15. 對齊文本
- 16. 文本對齊
- 17. 對齊文本
- 18. 文本對齊
- 19. 對齊div內的文本 - 垂直對齊不起作用
- 20. 頁面特定的CSS規則 - 把它們放在哪裏?
- 21. 的wxPython:文本對齊不起作用
- 22. 我的文本對齊:justify不工作
- 23. 拖放文件,並把它放在文件輸入
- 24. 基線對齊的TextView剪輯多行文本的底線
- 25. 文本框 - 文本對齊
- 26. 在對角線路徑上對齊文本
- 27. 對齊文本在CSS
- 28. 在textview中對齊文本
- 29. 在CSS中對齊文本
- 30. 在SVG中對齊文本
我希望你能意識到如果在最後一行有足夠的空間,「by john」短語應該與段落重疊 – Lucas