android - 如何并排排列两个textviews

时间:2012-05-21 11:41:56

标签: android textview

我有两个文字视图(TV_1,TV_2)。我想将TV_2设置为TV_1的右侧。 这意味着

  1. 假设TV1占据屏幕中的整行,则TV2将设置在TV1下方。
  2. 假设Tv1占据一行半,那么tv2将占据剩下的空间。怎么实现这个?我试过,但我没有得到。它类似于一个段落。
  3. enter image description here

        <RelativeLayout
            android:id="@+id/xrays_dicom_alert_TnC" 
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent"
            android:layout_marginTop="20dp">                            
    
            <CheckBox
                android:id="@+id/xrays_dicom_alert_cb"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"/>     
    
    
            <TextView
                android:id="@+id/xrays_dicom_alert_TnC_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:layout_toRightOf="@id/xrays_dicom_alert_cb"             
                android:text="I have read I agree to the following"
                android:textColor="@color/black"
                android:textAppearance="?android:attr/textAppearanceMedium" />  
            <TextView
                android:id="@+id/xrays_dicom_alert_statement"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:layout_toRightOf="@id/xrays_dicom_alert_cb"
                android:layout_below="@id/xrays_dicom_alert_TnC_text"
                android:layout_alignRight="@id/xrays_dicom_alert_TnC_text" 
                android:text="Statement"
                android:textColor="@color/black"
                android:layout_weight="1"
                android:textAppearance="?android:attr/textAppearanceMedium" />     
    
        </RelativeLayout>    
    

2 个答案:

答案 0 :(得分:2)

在Android中不可能采取行动。

视图占据屏幕上的矩形区域。

http://www.androidadb.com/class/android/view/View.java.html

或者你必须做这样的事情

enter image description here

要使TextView中的某些文本可以单击,可以使用 Spannable 概念。 http://developer.android.com/reference/android/text/Spannable.html

使用URLSpan http://www.androidadb.com/class/ur/URLSpan.html

答案 1 :(得分:1)

我认为你所要求的模式不可能。