我是android的初学者。我只是想清除我的概念。所以我开始在android中制作我的第一个屏幕。我想添加背景图像。然后是一个固定的标题(标题上有三个按钮)。然后滚动列表视图?你能帮我吗?我知道我必须在 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_vertical_margin"
tools:context=".First_activity"
android:background="@drawable/a">
<RelativeLayout
android:id="@+id/main_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/header" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
>
<ImageButton
android:id="@+id/setting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/settings" />
<ImageButton
android:id="@+id/add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/add"/>
<ImageButton
android:id="@+id/edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/edit" />
</RelativeLayout>
</RelativeLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</RelativeLayout>
直到现在我成功了..
标题图像不显示..三个按钮不显示..?