我有一个简单的待办事项列表应用程序,带有一个黑色加号形状的按钮,可以将事情添加到列表中。在 android 2.2 中,黑色加号如下所示:
然而,在 android 4.1 中,黑色加号看起来像这样:
加号应该看起来像它在 2.2 中的样子。这是我的相应片段的 xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/widget78"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
android:focusable="true" android:focusableInTouchMode="true">
<ListView
android:id="@+id/taskslist"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="10" />
<LinearLayout
android:id="@+id/widget83"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="12dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp">
<EditText
android:id="@+id/taskname"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@drawable/edittextbackground"
android:layout_marginBottom="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="2dp"
android:hint=" Add Something :)"
android:textSize="18sp"
android:windowSoftInputMode="adjustNothing"
android:cursorVisible="true"
android:textColor="#000000"
android:textCursorDrawable="@null"
android:layout_weight="9999999"/>
<!-- android:imeOptions="actionGo"
android:inputType="textImeMultiLine"
-->
<FrameLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<Button
android:id="@+id/addtask"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/small_black_plus"
android:layout_marginBottom="0dp"
android:layout_gravity="center"
android:layout_marginLeft="2dp"
android:layout_marginRight="0dp"
android:text="" />
</FrameLayout>
</LinearLayout>
</LinearLayout>
为什么两个版本的布局看起来不同?我怎样才能让它们看起来一样?