मैं एक वीडियो शीर्षक और टैग प्रदर्शित करने के लिए एक संवाद बनाना चाहूंगा। पाठ के नीचे मैं बटन जोड़ना, संपादित करना और हटाना और इन तत्वों को समान आकार देना चाहूंगा। क्या किसी को पता है कि LinearView के अंदर तत्वों को बनाने के लिए .xml लेआउट फ़ाइल को कैसे संशोधित किया जाए?
वर्तमान लेआउट फ़ाइल इस तरह दिखती है:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/txtTitle" android:text="[Title]" >
</TextView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/txtTags"
android:text="[Tags]" >
</TextView>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnPlay"
android:text="View">
</Button>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnEdit"
android:text="Edit">
</Button>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnDelete"
android:text="Delete">
</Button>
</LinearLayout>
</LinearLayout>
मैं सराहना करता हूं कि अगर कोई भी पेस्ट की गई फ़ाइल सामग्री को संशोधित करके समाधान दिखा सकता है।
धन्यवाद!