为什么我的TextView在LinearLayout中没有边框显示?

时间:2017-05-30 05:30:57

标签: android android-layout android-linearlayout textview

这是我的布局XML:

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />

    <View
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:background="@drawable/border" />

    <TextView android:text="ahahah 2!"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/border"
        xmlns:android="http://schemas.android.com/apk/res/android" />

</LinearLayout>

这是边界定义:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <solid android:color="@android:color/white" />
    <stroke android:width="1dip" android:color="#4fa5d5"/>
</shape>

这会使TextView之间出现水平线,但我希望TextView s本身的边框周围有边框。我该如何做到这一点?

6 个答案:

答案 0 :(得分:0)

只需在Text View本身定义它。

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/border"
    android:text="Hello World!" />

更改您的xml代码

<?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">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp"
        android:background="@drawable/border"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:text="Hello World!"
        android:textSize="22sp" />


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:background="@drawable/border"
        android:text="Hello World!"
        android:textSize="22sp" />


</LinearLayout>

答案 1 :(得分:0)

试试这个

<?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:padding="5dp"
android:orientation="vertical">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />

<View
    android:layout_width="match_parent"
    android:layout_height="2dp"
    android:background="@drawable/border" />

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/border"
    android:text="ahahah 2!" />

</LinearLayout>

答案 2 :(得分:0)

将布局文件更改为:

<?xml version="1.0" encoding="utf-8"?>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />

<View
    android:layout_width="match_parent"
    android:layout_height="2dp"
    android:background="@drawable/border" />

<TextView android:text="ahahah 2!"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:background="@drawable/border"
    xmlns:android="http://schemas.android.com/apk/res/android" />

答案 3 :(得分:0)

        <TextView android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:background="@drawable/border" 
         android:text="desired text"
         android:layout_margin="5dp"/>

试试这个背景xml

         <?xml version="1.0" encoding="utf-8"?>
          <shape 
           xmlns:android="http://schemas.android.com/apk/res/android" 
            android:shape="rectangle">

           <stroke android:color="@color/colorPrimary" 
            android:width="1dp"/>
           <solid android:color="@color/colorPrimary"/>
           <corners android:radius="5dp"/>
         </shape>

根据设计确保您的textview具有保证金。

答案 4 :(得分:0)

<?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">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp"
        android:background="@drawable/border"
        android:text="Hello World!"
        android:textSize="22sp" />


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="10dp"
        android:background="@drawable/border"
        android:text="Hello World!"
        android:textSize="22sp" />


</LinearLayout>

答案 5 :(得分:0)

如果你在Textview上应用填充并删除Textviews之间的View可以正常工作,请尝试使用此代码....它正在工作

<TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/border"
    android:layout_marginTop="20dp"
    android:padding="5dp"
    android:layout_gravity="center"
    android:gravity="center"
    android:text="ahahah 2!" />