वहाँ कई ट्यूटोरियल हैं और एसओ पर सवाल हैं जो कस्टम टाइटल बार को लागू करते हैं। हालांकि, मेरे कस्टम टाइटल बार में बैकग्राउंड के लिए मेरे पास एक कस्टम ग्रेडिएंट है और मैं जानना चाहूंगा कि इसे अपने कोड में गतिशील रूप से कैसे सेट किया जाए।
यहाँ मेरा कस्टम टाइटल बार कहा जाता है:
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.foo_layout);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_bar);
और यह मेरा है custom_title_bar
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@layout/custom_title_bar_background_colors">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/title_bar_logo"
android:gravity="center_horizontal"
android:paddingTop="0dip"/>
</LinearLayout>
जैसा कि आप देख सकते हैं, रैखिक लेआउट पर पृष्ठभूमि इस आदमी द्वारा परिभाषित की गई है:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#616261"
android:endColor="#131313"
android:angle="270"
/>
<corners android:radius="0dp" />
</shape>
मैं क्या करना चाहूंगा उन ढाल रंगों को गतिशील रूप से मेरे कोड में सेट करें। मैं अपनी एक्सएमएल फ़ाइल में उन्हें हार्ड कोड नहीं देना चाहता हूं जैसे वे वर्तमान में हैं।
यदि आप एक पृष्ठभूमि ढाल स्थापित करने का एक बेहतर तरीका है, तो मैं सभी विचारों के लिए खुला हूं।
पहले ही, आपका बहुत धन्यवाद!!