<view>代码没有进行更改。没有出现View

时间:2017-08-19 09:19:00

标签: android xml view line show

<View>未显示,未进行任何更改。 <View>标记无效。 我设置了一种颜色,但它再次无法正常工作, 为什么这是隐藏的? 我该怎么办? 请帮帮我......

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                tools:context="com.example.android.courtcounter.MainActivity">

    <View android:id="@+id/view"
          android:layout_width="1dp"
          android:layout_height="match_parent"
          android:textColor="@android:color/black"/>

</RelativeLayout>

doesn't showing ... code's effect

1 个答案:

答案 0 :(得分:0)

尝试以下代码查看;

        <View
        android:id="@+id/view"
        android:layout_width="match_parent"
        android:layout_height="3dp"
        android:background="@android:color/black" />