Sekmeler gibi tarayıcılar için özel tabhost oluşturmak istiyorum. Görüntüdeki gibi krom tarayıcı sekmesinde olduğu gibi bir düzen için nasıl uygulanacağı konusunda kafam karıştı. İşte Android için chrome tarayıcısında özel tabhost oluşturma
denedim budur. Bu kenarları görüntüdeki gibi eğimli olarak nasıl oluşturacağımı bilmek istiyorum.tab_selected.xml
<item>
<shape android:shape="rectangle" >
<solid android:color="#DCDCDC" />
<corners
android:topLeftRadius="5dp"
android:topRightRadius="5dp" />
</shape>
</item>
<item
android:bottom="2dp"
android:left="1dp"
android:right="1dp"
android:top="1dp">
<shape android:shape="rectangle" >
<solid android:color="#DCDCDC" />
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
</shape>
</item>
tab_unselected.xml
<item android:top="10dp">
<shape android:shape="rectangle" >
<solid android:color="#AAAAAA" />
</shape>
</item>
<item android:bottom="2dp">
<shape android:shape="rectangle" >
<solid android:color="#AAAAAA" />
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
</shape>
</item>
Umarız XML'de Pathshape kullanılarak yapılabilir. Bir referans için beni işaret edebilir mi? PathShape
Bunları xml çekilebilir olarak oluşturamazsınız, dokuz yama daha uygundur. – Luksprog
@ Luksprog PathShape ile program aracılığıyla bunu yapmayı umuyordum. Bununla mümkün mü? – intrepidkarthi
@intrepidkarthi Eğer herhangi bir çözüm buldunuz – UnderGround