LinearLayout不显示视图

时间:2016-02-08 19:24:57

标签: android xml-layout

我使用的[ { "display": "JavaScript Tutorial", "url": "http://www.w3schools.com/js/default.asp" }, { "display": "HTML Tutorial", "url": "http://www.w3schools.com/html/default.asp" }, { "display": "CSS Tutorial", "url": "http://www.w3schools.com/css/default.asp" } ] 并未显示每个视图。

这是xml代码:

LinearLayout

包含更多控件但这足以证明问题。

这应绘制一个黑色矩形。但缺少正确的垂直线。 为什么呢?

4 个答案:

答案 0 :(得分:1)

这是你做你想做的事情的错误方法。你想要一个周围有黑色背景的文字视图吗?只需在所有面上添加填充到TextView并设置背景颜色。

答案 1 :(得分:1)

只需为内部LinearLayout android:layout_width="0dp"android:layout_weight="1"

添加权重
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="160dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
>

<View
    android:layout_width="1dp"
    android:layout_height="match_parent"
    android:background="#FF000000" />

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dp"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    >

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#FF000000" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="43dp"
        android:text="Hola"/>
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#FF000000" />
</LinearLayout>

<View
    android:layout_width="1dp"
    android:layout_marginRight="5dp"
    android:layout_height="match_parent"
    android:background="#FF000000" />

答案 2 :(得分:0)

我认为“视图”甚至不是一个对象。

看起来您宁愿拥有相对视图,也可能是textView或imageView。

在任何情况下,它没有出现的原因是因为那个东西不存在。

答案 3 :(得分:0)

您已将视图背景颜色设置为透明度“android:background =”#FF000000“”替换颜色代码“android:background =”#FF0000“”