对于你们中的一些人来说,这似乎是一个非常简单的问题,但即使在尝试了本网站上提出的众多解决方案之后,我也找不到显示我的 TextView 的方法。并不是说我使用的是 Android 的内置 Eclipse XML 工具,并且 TextView 在这个图形布局上是可见的。这是我到目前为止所得到的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:contentDescription="@string/no_of_screens"
android:id="@+id/imageViewHome"
android:layout_width="290dp"
android:layout_height="212dp"
android:layout_gravity="center_horizontal"
android:paddingTop="40dp"
android:src="@drawable/logo" />
<RelativeLayout
android:id="@+id/relativeid"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<Button
android:id="@+id/launch_button"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="80dp"
android:text="@string/launch" />
<Spinner
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/launch_button"
android:layout_marginRight="20dp"
android:layout_toLeftOf="@+id/launch_button"
android:entries="@array/num_array"
android:prompt="@string/screen_prompt"
android:textSize="8pt" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/launch_button"
android:layout_alignBottom="@+id/launch_button"
android:layout_marginRight="16dp"
android:layout_toLeftOf="@+id/spinner1"
android:text="@string/no_of_screens"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
</LinearLayout>
就目前而言,所有其他元素都已正确显示。任何帮助将不胜感激!
谢谢