লিনিয়ারলআউটে গ্রেডিয়েন্ট পটভূমি প্রয়োগ করতে আমার সমস্যা হচ্ছে।
আমি যা পড়েছি তার থেকে এটি তুলনামূলক সহজ হওয়া উচিত তবে এটি কেবল কাজ করে বলে মনে হচ্ছে না। রেফারেন্সের জন্য আমি ২.১-আপডেট ১ এ বিকাশ করছি।
header_bg.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:startColor="#FFFF0000"
android:endColor="#FF00FF00"
android:type="linear"/>
</shape>
main_header.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:orientation="horizontal"
android:background="@drawable/header_bg">
</LinearLayout>
যদি আমি @ অঙ্কনযোগ্য / শিরোনাম_বিজিটিকে কোনও রঙে পরিবর্তন করি - যেমন # FF0000 এটি পুরোপুরি সূক্ষ্মভাবে কাজ করে। আমি কি এখানে স্পষ্ট কিছু মিস করছি?