如何使用背景资源在Android中将TextView作为卡片视图

时间:2019-01-21 06:03:24

标签: android textview

这是Textview:

<TextView
    android:id="@+id/text_naer_me"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
     android:gravity="center"
    android:text=“Hello”
    android:background="@drawable/rounded_white_border"
    />

此背景资源

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:width="1dp"
        android:color="@color/light_gray" />
    <solid android:color="@color/white" />
    <corners android:radius="2dp" />


</shape>

当前视图在下面

enter image description here

期望的视图在

之下

enter image description here

请向我建议如何实现这一点,我希望将textview作为卡片视图,您可以看到我的给定屏幕

2 个答案:

答案 0 :(得分:0)

  

使用 android:elevation =“ 20dp” 背景具有相同的效果   喜欢        不带包装卡视图的卡视图

        <TextView
        android:layout_margin="10dp"
        android:elevation="20dp"
        android:padding="20dp"
        android:background="@drawable/background"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Submit"
         />

答案 1 :(得分:0)

方法很多,这里就是使用适合您的方法

  

创建自己的可绘制对象

border.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item >
        <shape
            android:shape="rectangle">
            <solid android:color="@android:color/darker_gray" />
            <corners android:radius="5dp"/>
        </shape>
    </item>
    <item android:right="1dp" android:left="1dp" android:bottom="2dp">
        <shape
            android:shape="rectangle">
            <solid android:color="@android:color/white"/>
            <corners android:radius="5dp"/>
        </shape>
    </item>
</layer-list>

your_layout.xml

<TextView 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="horizontal"
   android:padding="10dp"
   android:background="@drawable/border"
  />
  

您还可以使用android中的drawable

android:background="@android:drawable/toast_frame"

或:

android:background="@android:drawable/dialog_frame"

或:

android:background="@android:drawable/dialog_holo_light_frame"
  

使用带有阴影的9色块图像并将其设置为背景的背景   线性布局

使用此网站创建9个带阴影的补丁

http://inloop.github.io/shadow4android/