我正在尝试学习如何制作 Android 应用程序(在 Jellybean 4.1.2 上),但我的“HelloWorld”应用程序的风格有问题。我想要的看起来像这样(默认的编辑文本/按钮外观):
不幸的是,我所拥有的看起来像这样:
这是我的布局文件源代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
我怎样才能让它看起来像那样,为什么一开始不是那样的?
提前致谢,
Niro56