में एक ही पंक्ति पर दो टेक्स्ट व्यू कैसे रख सकता हूं, मैं 4 टेक्स्ट व्यू के साथ एक छवि दृश्य प्रदर्शित करने की कोशिश कर रहा हूं। "शीर्षक" "समय" "आयु" और "सूचनाएं"। वे सभी वैश्विक क्षैतिज लेआउट में हैं। और 4 textView एक लंबवत लेआउट में हैं। बात यह है कि मैं एक ही पंक्ति में "समय" और "आयु" रखना चाहता हूं। लेकिन यह एक लंबवत लेआउट के साथ नहीं हो सकता है।मैं एक वर्टिकल लेआउट
<?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="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imgLink"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Titre"
android:textSize="8sp"
android:textStyle="bold" />
<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="8sp"
android:text="age" />
<TextView
android:id="@+id/age"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="8sp"
android:text="age" />
<TextView
android:id="@+id/information"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:textSize="8sp"
android:text="phrase" />
</LinearLayout>
धन्यवाद
तो एंड्रॉइड के साथ एक और रैखिक लयआउट का उपयोग क्यों नहीं कर सकता: अभिविन्यास = "क्षैतिज" या सापेक्ष लेआउट? –
@hehereshSingh क्योंकि यदि आप माता-पिता की चौड़ाई से अधिक हो जाते हैं तो यह अगली पंक्ति में लपेटता नहीं है। –