2014-04-21 51 views

回答

0

你必須要在這種情況下,兩個不同的TextViews並給比重= 「right」 做第二個

+0

我希望你能意識到如果在最後一行有足夠的空間,「by john」短語應該與段落重疊 – Lucas

0

替換隨你的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> 

enter image description here

+0

@Lucas Tan你有你的答案.. – Amardeepvijay

+0

你確定這會工作嗎? 「通過約翰」顯示完全如我的截圖所示?它會重疊「loren ipsum」段嗎? – Lucas

+0

@LucasTan如果最後一行沒有足夠的空間,那麼它應該在另一行,但仍然對齊rightIIts的作品。檢查它.... – Amardeepvijay

0

使用這個:希望這會起作用

<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>