我是 Android 新手(以前用 Visual Studio 开发...),到目前为止我对布局有疑问:
我想要做的是顶部有一个栏的布局(只是为了放置一些按钮或额外信息)和一个填充屏幕其余部分的滚动视图。到目前为止,这是我的做法:
<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"
tools:context=".Home" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="@android:color/white" >
<!-- I can put any button or text I want in here -->
</LinearLayout>
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="50dp"
android:background="@drawable/wallpaper" >
</ScrollView>
这正如我预期的那样工作,但我的问题是我是否以正确的方式进行操作,或者我应该以更好的方式(最有效)进行操作。
提前致谢