Linearlayout不显示任何内容

时间:2014-04-22 02:47:28

标签: android android-layout

我使用android:layout_weight来限制视图的大小,但现在我在屏幕上看不到任何内容。以下是代码:

<LinearLayout 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:orientation="vertical">

    <LinearLayout 
                android:layout_width="0dp" 
                android:layout_height="wrap_content" 
                android:layout_weight="2" 
                android:orientation="vertical"/>
   <ScrollView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">



            <LinearLayout 
                android:layout_width="0dp" 
                             android:layout_height="wrap_content" 
                             android:layout_weight="3" 
                android:orientation="vertical"
               >

6 个答案:

答案 0 :(得分:1)

这应该有用

 <LinearLayout 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:orientation="vertical"
 android:weightSum="5">

<LinearLayout 
        android:layout_width="match_parent" 
        android:layout_height="0dp" 
        android:layout_weight="2" 
        android:orientation="vertical"/>
<ScrollView
    android:layout_width="match_parent"
    android:layout_weight="3" 
    android:layout_height="0dp">

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

答案 1 :(得分:0)

设置android:layout_width="0dp"会使此布局不可见。将其更改为wrap_content或其他内容。

答案 2 :(得分:0)

试试这个:

<LinearLayout 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:orientation="vertical">

    <LinearLayout 
                android:layout_width="100dp" 
                android:layout_height="wrap_content" 
                android:layout_weight="2" 
                android:orientation="vertical"/>
                <ScrollView
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">

                     <LinearLayout 
                         android:layout_width="50dp" 
                         android:layout_height="wrap_content" 
                         android:layout_weight="3" 
                         android:orientation="vertical"
                      >

这会帮助你看到一些东西。根据您的要求更改宽度。

答案 3 :(得分:0)

试试这个,首先你需要在主线性布局中给出权重和。 同时将0dp更改为0 dip

 <LinearLayout 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:orientation="vertical"
android:weightSum="5">

<LinearLayout 
            android:layout_width="0dip" 
            android:layout_height="wrap_content" 
            android:layout_weight="2" 
            android:orientation="vertical"/>
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <LinearLayout 
            android:layout_width="0dip" 
                         android:layout_height="wrap_content" 
                         android:layout_weight="3" 
            android:orientation="vertical"
           >

答案 4 :(得分:0)

您应该在父线性布局中使用 weightSum 属性,例如 android:weightSum =&#34;子数&#34;

答案 5 :(得分:0)

// try this way hope this will help you...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.25"
        android:gravity="center"
        android:orientation="vertical">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="0.25 % Area"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.75"
        android:gravity="center">
        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="vertical">
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="0.75 % Area"/>
            </LinearLayout>
        </ScrollView>
    </LinearLayout>
</LinearLayout>