मेरे पास एक तुच्छ प्रश्न है जो मुझे कुछ समय से परेशान कर रहा है। मैंने इसे Google करने की कोशिश की, लेकिन किसी को भी मेरे जैसी समस्या नहीं है या इसे एक मुद्दे के रूप में नहीं देखता है। जब मैं लेआउट के तहत activity_my.xml में एक बटन बनाता हूं
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_1_name"
android:id="@+id/button2"
android:layout_marginTop="140dp"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true" />
मुझे एक बटन मिलता है जो दिखता है
हालांकि मेरे तार कोड है:
<resources>
<string name="app_name">HelloWorld</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
<string name="button_1_name">BuTtOn 1</string>
मुझे पता है कि मैं निश्चित रूप से यहां कुछ छोटा याद कर रहा हूं, लेकिन मुझे बटन टेक्स्ट में निचले मामले / ऊपरी मामले कैसे काम करते हैं?
धन्यवाद!