Android Text View এর বিভিন্ন Design.
Android এ আমরা যে Text View গুলো ব্যবহার করি সেগুলোর বিভিন্ন Design রয়েছে। আজকে দেখাব Text View এর বিভিন্ন Design সমূহ। নিচের ছবিতে দেখুন।
এখানে দেখুন আমি কয়েকটা Text View Design করেছি। নিচে Coding গুলো দেখুন ।
activity_main.xml:
এখানে দেখুন আমি কয়েকটা Text View Design করেছি। নিচে Coding গুলো দেখুন ।
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:padding="10dp" android:background="#800000" android:layout_height="match_parent" tools:context="com.firstapp.my.myfirstapp.MainActivity" android:orientation="vertical"> <TextView android:id="@+id/textView" android:layout_width="match_parent" android:layout_height="75dp" android:layout_marginTop="10dp" android:background="@drawable/img" android:gravity="center" android:text="Android App Development Tutorial" android:textColor="#FFEBCD" android:textSize="30dp" android:textStyle="bold" /> <TextView android:id="@+id/textView2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:gravity="center" android:textColor="#000000" android:textStyle="bold" android:background="#FFA500" android:text="I am Faisal Chowdhury" android:textSize="30dp" /> <TextView android:id="@+id/textView4" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="30dp" android:textColor="#000000" android:background="@drawable/text_bg_fac" android:layout_marginTop="10dp" android:gravity="center" android:text="Android App Developer" /> <TextView android:id="@+id/textView5" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="40dp" android:textColor="#000000" android:background="@drawable/text_bg_round" android:layout_marginTop="10dp" android:gravity="center" android:text="Android" /> <TextView android:id="@+id/textView6" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="40dp" android:textColor="#000000" android:background="@drawable/text_bg_ovel" android:layout_marginTop="10dp" android:gravity="center" android:text="Android" /> <TextView android:id="@+id/textView7" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="40dp" android:textColor="#000000" android:layout_marginTop="10dp" android:gravity="center" android:text="Android" /> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <TextView android:id="@+id/textView9" android:layout_width="110dp" android:layout_height="110dp" android:layout_marginTop="10dp" android:background="@drawable/text_bg_cercle" android:gravity="center" android:text="FAC" android:textColor="#000000" android:textSize="40dp" /> <TextView android:id="@+id/textView8" android:layout_width="110dp" android:layout_height="110dp" android:layout_marginLeft="10dp" android:layout_marginTop="10dp" android:background="#A0522D" android:gravity="center" android:text="FAC" android:textColor="#000000" android:textSize="40dp" /> <TextView android:id="@+id/textView10" android:layout_width="120dp" android:layout_height="110dp" android:layout_marginLeft="10dp" android:layout_marginTop="10dp" android:background="@drawable/text_bg_tringle" android:gravity="center" android:text="FAC" android:textColor="#000000" android:textSize="30dp" /> </LinearLayout> </LinearLayout>
drawable:
Image:
img |
text_bg_fac:
<shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle" > <solid android:color="#FFD700" /> <stroke android:width="5dp" android:color="#00BFFF"/> <corners android:radius="10dp"/> <gradient android:startColor="#1E90FF" android:centerColor="#20B2AA" android:endColor="#0000CD" android:centerX="0.5" android:centerY="0.5" android:gradientRadius="100" android:type="linear" /> </shape>
text_bg_round:
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" android:padding="10dp" android:shape="rectangle" > <solid android:color="#00FF7F" /> <corners android:radius="5dp" /> <stroke android:width="5dp" android:color="#FFFF00" /> </shape>
text_bg_ovel:
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" android:padding="10dp" android:shape="oval" > <solid android:color="#FF4500" /> <corners android:radius="5dp" /> <stroke android:width="5dp" android:color="#00FF7F" /> </shape>
text_bg_cercle:
<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="oval"> <stroke android:color="#1E90FF" android:width="5dp" /> <solid android:color="#87CEEB"/> <size android:width="150dp" android:height="150dp"/> </shape> </item> </selector>
text_bg_tringle:
<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="100dp" android:width="100dp" android:viewportHeight="100" android:viewportWidth="100" > <group android:name="triableGroup"> <path android:name="triangle" android:fillColor="#800080" android:pathData="m 50,0 l 50,100 -100,0 z" /> </group> </vector>
Ok বন্ধুরা Text View এর যে Design গুলো আমার মনে আছে তার সব Design আমি এখানে দিয়ে দিয়েছি। আপনারা Design গুলো Apply করার চেষ্টা করুন। আসা করি উপকৃ্ত হবেন। কিছু না বুঝলে Commend করবেন। Thank You
আমার সব Blog পেতে Click করুন
No comments