0

Stepper buttonsЕсть ли какой-либо простой способ создания этих шаговых кнопок?

Мне нужны такие кнопки, как кнопки месяца и года на изображении. Библиотека с именем Ystepperview доступна для ios, но не найдена для Android. Если бы кто-нибудь реализовал такие кнопки, дайте мне знать, что такое простой способ создать это представление.

+0

Запрашивая библиотеки, ваш вопрос будет закрыт, поэтому я удалил –

ответ

1

XML:

<LinearLayout 
     android:layout_width="wrap_content" 
     android:layout_height="55dp" 
     android:layout_alignParentBottom="true" 
     android:layout_marginBottom="20dp" 
     android:layout_marginLeft="20dp" 
     android:layout_marginRight="20dp" 
     android:background="@drawable/your_shape" 
     android:orientation="horizontal" 
     android:weightSum="2"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:layout_gravity="center" 
      android:layout_marginBottom="1dp" 
      android:layout_marginTop="1dp" 
      android:gravity="center" 
      android:padding="15dp" 
      android:src="@drawable/yourLeftIcon"/> 


     <View 
      android:layout_width="1dp" 
      android:layout_height="match_parent" 
      android:layout_weight="0" 
      android:background="#000000" /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:layout_gravity="center" 
      android:layout_marginBottom="1dp" 
      android:layout_marginTop="1dp" 
      android:background="#fbae41" 
      android:gravity="center" 
      android:text="JAN" 
      android:paddingLeft="10dp" 
      android:paddingRight="10dp" 
      android:textColor="@color/white" 
      android:textSize="18sp" /> 

     <View 
      android:layout_width="1dp" 
      android:layout_height="match_parent" 
      android:layout_weight="0" 
      android:background="#000000" /> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:layout_gravity="center" 
      android:layout_marginBottom="1dp" 
      android:layout_marginTop="1dp" 
      android:gravity="center" 
      android:padding="15dp" 
      android:src="@drawable/yourRightIcon" 
      /> 


    </LinearLayout> 

SHAPE your_shape.xml:

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
    <solid android:color="#999a97"/> 
    <stroke android:width="1dip" android:color="#000000" /> 
    <corners android:radius="24dip"/> 
    <padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" /> 
</shape> 

выход:

enter image description here

Измените углы андроида: radius = "24dip" на правильный радиус, а цвет фона - сплошной андроид: color = "# 999a97", и вы получите представление примера.

+1

приятную реализацию –

Смежные вопросы