是否可以通过绑定设置可见性? (dimens.xml)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="@whatever/visibility_of_this_view"
android:orientation="horizontal">...
这样我就可以在dimens.xml中放置一些内容,如:
<whatever name="visibility_of_this_view">visible</whatever>
我不想通过代码或不同的布局来做,只需使用不同的dimens.xml。
答案 0 :(得分:2)
如何选择不同的尺寸(布局,api,什么),您应该使用相同的机制来选择另一个布局,甚至是设置可见性的不同样式。其他方式似乎是一种滥用的方式:)