自定义按钮背景[ANDROID]

时间:2018-05-09 10:12:50

标签: android xamarin button

我想在xamarin android app中制作这种按钮:

buttonexample

如何实现?

提前致谢

3 个答案:

答案 0 :(得分:1)

试试这个

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="10dp"
    android:background="@drawable/test"
    android:gravity="center">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="#e3ff0000"
        android:drawableLeft="@drawable/ic_message"
        android:padding="10dp" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#95ff0000"
        android:text="Nilesh" />
</LinearLayout>

答案 1 :(得分:1)

LinearLayout可用于实现类似的结果

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"  android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:layout_width="50dp"
        app:srcCompat="@drawable/ic_cross_square"
        android:layout_height="50dp" />
    <TextView
        android:layout_width="match_parent"
        android:background="@android:color/holo_red_dark"
        android:textColor="@color/white"
        android:gravity="center"
        android:textSize="25sp"
        android:text="@string/myText"
        android:layout_height="50dp" />
</LinearLayout>

答案 2 :(得分:1)

您可以在Lay out xml的按钮中使用android:background="@android:color/holo_red_dark"

或者

如果要将图像用于按钮背景。 您可以使用android:background="@drawable/your_btn_image"。 在这种情况下,您只想将图像复制到项目的drawable文件夹中。