Hallo,
kurz zu mir: Ich bin ziemlich neu in der Android welt von daher bitte ich drum meine Unerfahrenheit zu entschuldigen
zum Probelm: Ich habe ein kleinen Widget gemacht (mit einen Tutorial), und habe jetzt das Problem das um den Widget kleiner Ränder sind (siehe Bild). Weiß wer wie ich die Weg bekomme?
[Blockierte Grafik: http://s1.directupload.net/file/d/2940/lu6j4wtd_png.htm]
http://s1.directupload.net/file/d/2940/lu6j4wtd_png.htm
Code
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="80dip"
android:minHeight="20dip"
android:updatePeriodMillis="0"
android:initialLayout="@layout/lazeruswidget"
/>
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_gravity="center"
android:background="@drawable/appwidgetdarkbg"
android:layout_height="wrap_content">
<Button android:id="@+id/button_one"
android:layout_gravity="center_horizontal|center"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:background="@drawable/ic_launcher"
/>
<Button android:id="@+id/button_two"
android:layout_gravity="center_horizontal|center"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/contentedit"
/>
</LinearLayout>
Alles anzeigen
Danke für eure Hilfe!