0

为什么 id 为 textView1 和 textView2 的 textview 没有显示,但其他所有内容都显示了。

我尝试添加

android:layout_alignLeft="@+id/bus_data"
android:layout_below="@+id/bus_data"

但它仍然没有出现。我不知道xml有什么问题

这是xml代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_horizontal_margin"
tools:context=".MainActivity"
android:background="#545454" >
<LinearLayout          
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" 
    android:id="@+id/search_result_box"
    android:background="@drawable/search_item_selector_stlye">      
    <LinearLayout          
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" 
        android:id="@+id/bus_data"
        android:background="@drawable/search_item_selector_stlye">

                <LinearLayout 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                    <TextView   android:id="@+id/stop_code_string"
                                android:text="@string/stop_code_string"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:textColor="#2a2a2a"
                                android:textSize="10sp"
                                android:layout_gravity="center"
                                android:gravity="center"        />
                    <TextView   android:id="@+id/stop_code"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:text="@string/stop_code_string"                 
                                android:padding="20dip"
                                android:textColor="#2a2a2a"
                                android:textSize="16sp"
                                android:textStyle="bold" 
                                android:gravity="center"
                                android:background="@drawable/right_border_line_textview"
                    />

                </LinearLayout>

                <View
                android:layout_width="1dip"
                android:layout_height="fill_parent"
                android:background="#bdbdbd"
            />

                 <LinearLayout 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                     <TextView  android:id="@+id/stop_name_String"
                                android:text="@string/stop_name_string"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:textColor="#2a2a2a"
                                android:textSize="10sp"
                                android:gravity="center"
                                android:paddingLeft="5dp"
                    />
                    <TextView   android:id="@+id/stop_name"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:text="@string/stop_name_string"
                                android:paddingLeft="20dp"
                                android:paddingTop="10dp"
                                android:textColor="#2a2a2a"
                                android:textSize="16sp"
                                android:textStyle="bold"
                        />
                </LinearLayout>


    </LinearLayout>
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:id="@+id/search_result_data_box"
        android:background="@drawable/search_item_selector_stlye">

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/bus_data"
            android:layout_below="@+id/bus_data"
            android:text="asdasdasdasdas" />
        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/bus_data"
            android:layout_below="@+id/bus_data"
            android:text="asdasdasdasdas" />

    </LinearLayout>
</LinearLayout>

4

2 回答 2

0

These TextView are in a Linearlayout. You only have below and left in RelartiveLayout. Please give your parent linearLayout the below an and Left parameters

<LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" 
    android:id="@+id/search_result_data_box"
    android:layout_alignLeft="@+id/bus_data"
    android:layout_below="@+id/bus_data"
    android:background="@drawable/search_item_selector_stlye">

I see that bus_data is in LinearLayout too, so what you are planing to do does not work. Try other Methods or post a picture what kind of layout you want to achieve

于 2013-10-08T06:03:04.563 回答
0

两者TextView似乎都引用bus_dataView它们需要在下方和左侧对齐的 id。

然而,他们通过添加一个新的 id ( +id) 来引用它。

他们可能应该只引用现有的 id 而不会尝试创建一个新的。

另请参阅:SO 线程以获取有关该android:id属性的更多信息。

于 2013-10-08T06:01:08.990 回答