2017-05-06 153 views
1

我讓我的應用程序存儲報價,我需要使它能夠排序報價(由作者,按主題)。實際上,我想在這些標籤中展示這些方法。像谷歌播放選項

但我真的很喜歡標籤像谷歌Play應用

enter image description here

而且我想也作出了同樣在我的應用程序。

請告訴我,在我能做什麼的幫助下?

謝謝。

+0

你搜索什麼,到目前爲止背景使用? –

+0

@Bogdan:您正在查看的小部件不是Tab,它們只是使用Horizo​​ntal Recycler View佈置的視圖。 TabLayout在上面,讓我知道你到底在找什麼,我可以解釋更多。 –

+0

我查看了關於PagerTitleStrip的文檔[link](https://developer.android.com/training/implementing-navigation/lateral.html#PagerTitleStrip)。 –

回答

0

創建文件夾繪製XML和嘗試這種代碼風格的按鈕和按鍵的像R.drawable.buttonStyle

<selector xmlns:android="http://schemas.android.com/apk/res/android" > 
<item > 
     <shape android:shape="rectangle" > 
      <corners android:radius="5dip" /> 
      <stroke android:width="1dip" android:color="#1abc9c" /> 
      <gradient android:angle="-90" android:startColor="#1abc9c" android:endColor="#1abc9c" /> 
     </shape> 
    </item> 
</selector> 
+0

明智地說,這就是我一直在尋找的東西。謝謝。 –