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