如何在此布局下添加新布局?

时间:2013-07-17 17:22:51

标签: android android-layout

如何分屏半?如何在此布局下添加图像?这将捕获全屏我想添加bwlow这个布局一个更多的布局,其中包含一些textview或图像我是如何做到的?我想将全屏幕设置为一半,并在此布局下添加新的latout我怎么做?喜欢此图片http://imgur.com/dlXCoCu,但屏幕看起来像http://imgur.com/4WRxONf

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/db1_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#333333"
android:orientation="horizontal" >

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_marginBottom="1dp"

    android:layout_marginTop="1dp"
    android:layout_weight="1"
    android:background="#ffffff"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.3"
        android:paddingLeft="1dp"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="20dp"
        android:layout_weight="0.1"
        android:paddingTop="5dp"
        android:text="CONTAINS"
        android:textColor="#000000"
        android:textSize="10dip" />





     <com.schoollunchapp.HorizontalListView
           android:id="@+id/listview"
           android:layout_width="wrap_content"
           android:layout_height="0dp"
              android:layout_weight="0.6"

           android:background="#ddd" >

</com.schoollunchapp.HorizontalListView>








 </LinearLayout>

 <TextView
    android:id="@+id/imageView1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:paddingLeft="1dp"
    android:textColor="#ffffff"
    android:text="kurdfgkjdfuhfudshfkdshfdfhs
 kdjhfjdshfkjdshfkdshfkshjdhfskjhfksdhfksjhfkjsdhfkjsdhfk
 jshfshfshfdshdfshdkjfhsafkjsahdfksahdf" />

1 个答案:

答案 0 :(得分:0)

您是否尝试将TextView放在另一个线性布局中,该布局也嵌套在容器布局中并且给定

android:layout_weight="1"

?您还可以查看this SO question