-2
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="220dp"
        android:text="@string/hello_world" />

    <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:paddingLeft="16dp"
        android:paddingRight="16dp" 
        android:paddingTop="500dp">

         <ImageButton
            android:id="@+id/id_button_previous"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/previous"
            android:contentDescription="@string/text_previous" />

        <ImageButton
            android:id="@+id/id_button_startpause"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/id_button_previous"
            android:layout_marginLeft="30dp"
            android:background="@drawable/startstop"
            android:contentDescription="@string/text_startpause" />

        <ImageButton 
            android:id="@+id/id_button_next"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/id_button_startpause"
            android:background="@drawable/next"
            android:contentDescription="@string/text_next"
            />

    </RelativeLayout>  


</LinearLayout>

布局可以显示 textview 'helloworld',但不能显示 imageButton,

我不知道为什么它不能正常显示,错误在哪里。如果我不写更多,我不能提交,这是没用的。顺便说一句,

4

4 回答 4

1

只需删除

android:paddingTop="500dp"

从你的相对布局,他们会工作=)

于 2013-08-28T12:29:58.363 回答
0

哎呀,这么大的填充物,

android:paddingTop="500dp"

在这里,

 <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:paddingLeft="16dp"
        android:paddingRight="16dp" 
        android:paddingTop="500dp">

删除填充或将响应式布局的填充调整为较小的值。就像是,

android:paddingTop="50dp"

修改后的代码,

 <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:paddingLeft="16dp"
        android:paddingRight="16dp" 
        android:paddingTop="50dp">

它有效,你会看到你的图像..

于 2013-08-28T12:27:52.410 回答
0

您的布局错误您已为相对布局提供 500dp 的填充,因此图像按钮低于 500dp,并且由于布局中未添加滚动视图,因此您看不到图像按钮

于 2013-08-28T12:30:45.003 回答
0

原因是这样的......

android:paddingTop="500dp"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="220dp"
        android:text="@string/hello_world" />

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp" 
        android:layout_marginTop="16dp">

         <ImageButton
            android:id="@+id/id_button_previous"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/previous"
            android:contentDescription="@string/text_previous"  />

        <ImageButton
            android:id="@+id/id_button_startpause"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="30dp"
            android:background="@drawable/startstop"
            android:contentDescription="@string/text_startpause" />

        <ImageButton 
            android:id="@+id/id_button_next"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/next"
            android:contentDescription="@string/text_next"
            />

    </LinearLayout>  


</LinearLayout>
于 2013-08-28T12:31:55.110 回答