मेरे पास एक रैखिक लेआउट (क्षैतिज रूप से उन्मुख) है जिसमें 3 बटन हैं। मैं चाहता हूं कि 3 बटन एक निश्चित चौड़ाई वाले हों और समान रूप से रैखिक लेआउट की चौड़ाई में वितरित किए जाएं।
मैं रैखिक केंद्र के गुरुत्वाकर्षण को केंद्र में रखकर और फिर बटन की पैडिंग को समायोजित करके इसे प्रबंधित कर सकता हूं, लेकिन यह एक निश्चित चौड़ाई के लिए काम करता है और उपकरणों या झुकावों को बदलने के लिए काम नहीं करेगा।
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:gravity="center">
<Button
android:id="@+id/btnOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>
<Button
android:id="@+id/btnTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>
<Button
android:id="@+id/btnThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>
</LinearLayout>