Android Widget添加按钮

时间:2017-08-15 20:40:59

标签: android xml android-layout android-widget

我试图向我的(工作)小部件添加按钮,但它不断中毒(小部件图像无法加载)。

这是我的布局......它有什么问题?

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

    <TextView
        android:id="@+id/text"
        android:background="@android:color/holo_blue_bright"
        android:textColor="@android:color/white"
        android:textAppearance="@android:style/TextAppearance.Medium"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content" />

    <ImageButtonButton
        android:id="@+id/snooze"
        android:layout_weight="1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_snooze_24dp">
    </ImageButtonButton>

    <ImageButtonButton
        android:id="@+id/add"
        android:layout_weight="1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_add_24dp">
    </ImageButtonButton>

</LinearLayout>

1 个答案:

答案 0 :(得分:2)

不应<head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="UCL.css"> <title>Home</title> <div class="stripes"> <div class="container"> <a href="contact-us.html" target="_top">Contact Us</a> <a href="products-gifts.html" target="_top">Products & Gifts</a> <div class="dropdown"> <button class="dropbtn">Treatments</button> <div class="dropdown-content"> <a href="body-contouring.html" target="_top">Body Contouring</a> <a href="cellulite.html" target="_top">Cellulite</a> <a href="laser-hair-reduction.html" target="_top">Laser Hair Reduction</a> <a href="laser-peels.html" target="_top">Laser Peels</a> <a href="led.html" target="_top">LED</a> <a href="photofacial.html" target="_top>" Photofacial & Photobody</a> <a href="spider-veins.html" target="_top">Spider Veins</a> </div> </div> <a href="home.html" target="_top">Home</a> </div> </head> ImageButtonButton