We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
比如有两个tab 第一个tab的指示器背景是个朝左的箭头,第二个tab指示器背景是个朝右的箭头,如何设置
The text was updated successfully, but these errors were encountered:
不是很清楚需求, 写个demo来看看?
demo
Sorry, something went wrong.
就是这样的tab,如何切换选中背景和默认背景
用Android原生的selector就可以实现.
selector
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_selected="true"> 选中样式 </item> <item> 默认样式 </item> </selector>
No branches or pull requests
比如有两个tab 第一个tab的指示器背景是个朝左的箭头,第二个tab指示器背景是个朝右的箭头,如何设置
The text was updated successfully, but these errors were encountered: