通过FloatingActionButton
方法以编程方式设置我的backgroundTint
setBackgroundTintList
无法正常工作,但通过XML app:backgroundTint
标记进行设置确实有效 - 为什么会这样?
fab_background_color.xml颜色列表状态为:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true"
android:color="#654321"/>
<item android:color="#123456"/>
</selector>
我的活动布局是:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.FloatingActionButton
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
</android.support.design.widget.CoordinatorLayout>
和活动代码:
public class SampleActivity extends AppCompatActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_position_sample);
final FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.test);
// Uncomment to test - this does NOT work however.
//fab.setBackgroundTintList(getResources().getColorStateList(R.color.fab_background_color));
fab.setOnClickListener(new View.OnClickListener()
{
@Override public void onClick(View v)
{
if (fab.isSelected())
fab.setSelected(false);
else
fab.setSelected(true);
}
});
}
}
如果我添加:
fab.setBackgroundTintList(getResources().getColorStateList(R.color.fab_background_color));
或:
fab.setBackgroundTintList(ContextCompat.getColorStateList(this, R.color.fab_background_color));
在设置点击监听器之前的活动代码中没有任何反应。
如果我添加:
app:backgroundTint="@color/fab_background_color"
对于FloatingActionButton的活动布局代码,我得到了预期的行为。
有什么想法?我做错了吗?
答案 0 :(得分:3)
使用它:
fab.setBackgroundTintList(ContextCompat.getColorStateList(getApplicationContext(), R.color.purple_200));
干杯!
答案 1 :(得分:3)
由于setBackgroundTintList
仅在API 21+中受支持,因此您可以使用ViewCompat。
ViewCompat.setBackgroundTintList(
fab,
ContextCompat.getColorStateList(
getApplicationContext(),
R.color.purple_200
)
);
答案 2 :(得分:0)
此问题已在Android支持库25.1.0
中得到解决请参阅:https://code.google.com/p/android/issues/detail?id=227428