背景Attr在Android视图中不起作用

时间:2018-04-13 06:19:31

标签: android xml android-layout android-view

我试图获得默认的涟漪效应,但我无法弄清楚为什么它不适合我。这是我的代码。

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context="com.enam.rippledemo.MainActivity"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:background="?android:attr/selectableItemBackground"
        android:text="Hello World!"
        />
</LinearLayout> 

Android版:LOLLIPOP

我犯了错误?

2 个答案:

答案 0 :(得分:1)

尝试这样做TextView android:clickable="true"

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:clickable="true"
    android:background="?android:attr/selectableItemBackground"
    android:text="Hello World!"
    />

答案 1 :(得分:0)

机器人:背景=&#34;机器人:?ATTR / selectableItemBackground&#34;

你看到的错误指出?android:attr / selectableItemBackground可用于API版本&gt; = 11.确实如此。