我有一个使用大量textinputlayouts的应用程序,因为我喜欢他们创建的样式
在一个屏幕上我显示一个对象的信息,我希望它看起来像用户使用textinputedittexts输入的数据,上面的小标题和下面的数据
现在我有一个textinputlayout,下面有一个禁用的textinputedittext
有没有办法让textinputlayout下的textview以相同的样式显示?
提前感谢您提供的任何帮助
编辑:
作为附注,这是我目前用来完全禁用edittext的内容
<android.support.design.widget.TextInputLayout
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/name"
tools:text="This is where the name goes"
android:inputType="none"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false" />
我想避免的是在我正在尝试创建的每个视图中使用clickable和inputtype等等,而是使用单个视图
除了创建以各种方式启动unclickabke的自定义edittext(如NeverEnabledEditText),或者将所有这些属性添加到我的xml之外,有没有办法执行上述操作?