Ich versuche, einen linearen Verlauf auf meine ListView anzuwenden. Dies ist der Inhalt meiner zeichnbaren XML: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:startColor="#3A3C39" android:endColor="#181818" android:angle="270" /> <corners android:radius="0dp" /> </shape> Also wende ich es auf meine ListView an mit: android:background="@drawable/shape_background_grey" Es funktioniert, aber es sieht auf dem Emulator und auch …
Es gibt viele Tutorials und Fragen zu SO, die benutzerdefinierte Titelleisten implementieren. In meiner benutzerdefinierten Titelleiste habe ich jedoch einen benutzerdefinierten Verlauf für den Hintergrund und möchte wissen, wie ich ihn dynamisch in meinem Code festlegen kann. Hier wird meine benutzerdefinierte Titelleiste aufgerufen: requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); setContentView(R.layout.foo_layout); getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_bar); Und das ist …
Ich habe folgenden Farbverlauf: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:startColor="#ECECEC" android:centerColor="#F6F6F4" android:endColor="#F8F8F6" android:angle="90" android:dither="true" /> </shape> Ich möchte, dass dies transparent ist, da ich dies in meiner ListView als ListSelector einstelle: <ListView android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ARListView" android:background="@drawable/transparent_background" android:cacheColorHint="#00000000" android:drawSelectorOnTop="true" android:listSelector="@drawable/stocks_selected_gradient"> </ListView>
Ich gehe durch Testbeispiel. Wenn für einen Bildhintergrund ein Farbverlauf verwendet wird, sieht der Code folgendermaßen aus <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:startColor="#ff0000" android:centerColor="#00ff00" android:endColor="#0000ff" android:angle="180"/> <corners android:radius="5dp" /> </shape> In der obigen XML habe ich kein angleAttribut erhalten. aber wenn ich den Wert von angleleicht ändere , neigt …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.