android:实现FacebookMes​​senger-like tablayout

时间:2016-08-28 15:19:46

标签: java android facebook

如何实现这种风格??

enter image description here

我不确定它是否是某种自定义的tablayout或任何东西。 任何想法如何实现这样的事情??

1 个答案:

答案 0 :(得分:0)

<Switch
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:thumb="@drawable/switch_thumb"
    android:track="@drawable/switch_bg" />

选择器

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false" android:drawable="@drawable/switch_thumb_disabled_holo_light" />
    <item android:state_pressed="true"  android:drawable="@drawable/switch_thumb_pressed_holo_light" />
    <item android:state_checked="true"  android:drawable="@drawable/switch_thumb_activated_holo_light" />
    <item                               android:drawable="@drawable/switch_thumb_holo_light" />
</selector>

已停用的版本(Android正在使用的xhdpi版本)已停用的版本enter image description here

按下的滑块:按下的滑块enter image description here

激活的滑块(开启状态):激活的滑块enter image description here

默认版本(关闭状态):在此处输入图像说明enter image description here

图书馆:SwitchButton