布局问题

时间:2017-10-25 08:00:56

标签: android xml android-layout android-linearlayout

我已将我的观点分成5次,我想在每个隔间上放置不同的东西。这是我面临的问题;

没有文字视图enter image description here

使用textview enter image description here

这是我的代码;

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#add823"
        android:weightSum="1"
        android:layout_weight="0.5"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0.5"
            android:orientation="vertical"/>

        <View
            android:layout_width="0.5dp"
            android:layout_height="match_parent"
            android:background="#111111"/>

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

            <TextView
                android:layout_width="wrap_content"
                android:gravity="center"
                android:layout_height="wrap_content"
                android:text="Power"/>
        </LinearLayout>
    </LinearLayout>

2 个答案:

答案 0 :(得分:1)

像这样更新xml而不是wrap_content使用0dp LinearLayout(Power文本的父级)

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#add823"
    android:weightSum="1"
    android:layout_weight="0.5"
    android:orientation="horizontal"

    >

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

    </LinearLayout>

    <View
        android:layout_width="0.5dp"
        android:layout_height="match_parent"
        android:background="#111111"></View>
    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:orientation="vertical"
        >

        <TextView
            android:layout_width="wrap_content"
            android:gravity="center"
            android:layout_height="wrap_content"
            android:text="Power"/>
    </LinearLayout>
</LinearLayout>

答案 1 :(得分:0)

您可以在布局中将包装内容更改为 0dip 电源文字

<?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:layout_weight="0.5"
    android:background="#add823"
    android:orientation="horizontal"
    android:weightSum="1">

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

    </LinearLayout>

    <View
        android:layout_width="0.5dp"
        android:layout_height="match_parent"
        android:background="#111111"></View>

    <LinearLayout
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Power" />
    </LinearLayout>
</LinearLayout>

结果:

enter image description here