android-linearlayout पर टैग किए गए जवाब

LinearLayout Android में मूल लेआउट में से एक है। यह अपने बच्चों को एक के बाद एक, क्षैतिज या लंबवत रूप से व्यवस्थित करता है।

5
क्या LinearLayout की तुलना में RelativeLayout अधिक महंगा है?
मैं हमेशा से RelativeLayout का उपयोग कर रहा हूँ हर बार मुझे एक व्यू कंटेनर की आवश्यकता होती है, यह लचीलेपन के कारण होता है, भले ही मैं वास्तव में कुछ सरल प्रदर्शित करना चाहता था। क्या ऐसा करना ठीक है, या मुझे प्रदर्शन / अच्छी प्रथाओं के दृष्टिकोण से, …


5
एंड्रॉइड - सेंटर टेक्स्ट व्यू क्षैतिज रूप से रैखिकलेआउट में
मेरे पास निम्नलिखित मूल लेआउट हैं <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/title_bar_background"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:textAppearance="?android:attr/textAppearanceLarge" android:padding="10dp" android:text="HELLO WORLD" /> </LinearLayout> <LinearLayout> ऐसा लगता है कि xml सही है लेकिन पाठ बाईं ओर संरेखित है। टेक्स्टव्यू माता-पिता की संपूर्ण चौड़ाई को लेता है और टेक्स्टव्यू …

7
यदि यह 1 पंक्ति से अधिक है, तो मैं अपने टेक्स्ट व्यू पर दीर्घवृत्त कैसे दिखा सकता हूं?
मेरे पास निम्नलिखित लेआउट है जो काम नहीं करता है: <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:id="@+id/experienceLayout" android:background="#ffffff" android:layout_height="match_parent" android:paddingLeft="6dp" android:paddingRight="6dp" android:paddingBottom="6dp" android:paddingTop="6dp"> <TextView android:layout_weight="1" android:id="@+id/experienceLabel" android:text="Experience" android:layout_height="wrap_content" android:textColor="#000000" android:layout_width="wrap_content" android:textStyle="bold"> </TextView> <TextView android:id="@+id/experienceTextView" android:text="TextView" android:layout_height="wrap_content" android:textColor="#000000" android:layout_width="wrap_content" android:ellipsize="end" android:lines="1" android:maxLines="1" android:singleLine="true" android:fadeScrollbars="false"> </TextView> </LinearLayout>

20
कैसे अलग LinearLayouts से RadioButton समूह के लिए?
मैं सोच रहा था कि क्या RadioButtonएक RadioGroup ही संरचना को बनाए रखने के लिए प्रत्येक को एक अद्वितीय समूह में संभव है । मेरी संरचना इस तरह दिखती है: LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 जैसा कि आप देख सकते हैं, अब प्रत्येक RadioButtonअलग का एक बच्चा है …

11
क्षैतिज रेखीय लयआउट के लिए (ऊर्ध्वाधर) विभक्त कैसे जोड़ें?
मैं एक क्षैतिज रैखिक लेआउट में एक विभक्त जोड़ने की कोशिश कर रहा हूँ, लेकिन कहीं नहीं मिल रहा है। विभक्त बस नहीं दिखाता है। मैं एंड्रॉइड के साथ कुल नौसिखिया हूं। यह मेरा लेआउट XML है: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/llTopBar" android:orientation="horizontal" android:divider="#00ff00" …

6
कोड में लेआउट अभिविन्यास
मेरे पास मेरे आवेदन में यह कोड है: LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT); और मैं अभी रैखिक के अभिविन्यास को ऊर्ध्वाधर में सेट करना चाहता हूं। XML में समतुल्य है: android:orientation="vertical" मैं इसे बिना XML के कोड में कैसे कर सकता हूं?

13
एंड्रॉइड में रैखिक रेखा के चारों ओर छाया कैसे दिखाएं?
मैं अपने रैखिक लेआउट के लिए छाया कैसे दिखा सकता हूं। मैं रैखिक रंग के चारों ओर छाया के साथ सफेद रंग का गोल पृष्ठभूमि चाहता हूं। मैंने अब तक यही किया है। <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@xml/rounded_rect_shape" android:orientation="vertical" android:padding="10dp"> <-- My buttons, textviews, Imageviews go here --> </LinearLayout> और …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.