如何在android中制作像walkman这样的布局

时间:2013-03-25 10:33:41

标签: android android-layout layout

我是Android布局的新手,我想创建一个像这个图像的布局

enter image description here

你知道它的索尼随身听 我只想要一个类似的背景,有些像那些盒子.. 这是我的布局

enter code here<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff000000"
android:orientation="vertical"
android:padding="0dp"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="0dp"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Hafez" >

<ImageView
    android:id="@+id/bg_top"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitStart"
    android:src="@drawable/music_library_albums_header" />

<ImageView
    android:id="@+id/bg_gradient"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="fitEnd"
    android:src="@drawable/bg_gradient" />

<LinearLayout
    android:id="@+id/linearLayout2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/imageView2"
    android:layout_marginLeft="52dp" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/tiles_bg"
        android:text="Button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>

<LinearLayout
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="147dp"
    android:orientation="horizontal"
    android:paddingLeft="@dimen/activity_vertical_margin" >

    <Button
        android:id="@+id/btn_back"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:background="@drawable/back_button"
        android:minHeight="10dp"
        android:minWidth="10dp" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="15dp"
            android:text="Liberary"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textColor="#ffffff" />

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="14dp"
            android:text="Chose what you want"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="#ffffff" />
    </LinearLayout>
</LinearLayout>

我真的很困惑,制作它的背景..你看到顶部有一个图像,它的屏幕上有midele,然后我们在屏幕底部看到一个渐变。但是我不能设置渐变来开始顶部图像并一直持续到屏幕结束.. 我想要一个像屏幕一样的东西。托盘和底部,在顶部我设置图像,在底部一个渐变和其他盒子来到他们面前..有什么办法可以做到这一点? 谢谢你的帮助

1 个答案:

答案 0 :(得分:0)

简单的方法是使用背景图像进行板条箱线性布局。 上面的布局采用一个文本视图和网格视图3 * 3行和列。

使用图像和文本视图实现了gridview布局