使用android屏幕布局

时间:2014-11-28 11:50:10

标签: android android-layout

我很难掌握Android布局,首先,任何人都可以指点我在屏幕上使用布局的基础教程。当我阅读google layout dev ref时,我理解这些概念,但是来练习并且我不太明白。

我有以下布局,我试图在Android屏幕上复制,我相信我需要在其他布局中嵌套不同的布局,但我不能完全得到我看起来像这样: http://screencast.com/t/GFw7OSzvbmX

任何有关代码类似的建议以及让我走的教程都会很棒thx

2 个答案:

答案 0 :(得分:2)

enter image description here

(黑色 - LinearLayout Vertical) (红色 - LinearLayout水平) (绿色 - ImageView) (黄色 - TextView) (布朗 - 巴顿)

首先想象这样。然后写你的xml。

答案 1 :(得分:1)

使用TextView,Button,ImageView作为子项,并使用LinearLayout作为处理区域分配子内容的权重的父级:

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.40">

        <ImageView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:scaleType="fitXY"
            android:src="@drawable/ic_launcher"/>
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="textview"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="textview"
                android:layout_marginTop="5dp"/>
        </LinearLayout>

    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.60"
        android:orientation="vertical">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="textview"
            android:layout_marginTop="5dp"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="textview"
            android:layout_marginTop="5dp"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp">
            <TextView
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content"
                android:text="textview"/>
             <Button
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:text="button"/>
        </LinearLayout>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="textview"
            android:layout_marginTop="5dp"/>
    </LinearLayout>

</LinearLayout>