当在具有背景渐变的按钮上使用较小的文本大小时,按钮会在 Android 2.2 上按预期缩小,但在 Android 4 上不会。我可以让它工作的唯一方法是将按钮变成 TextView 并设置一个点击事件在上面。我已经看到提到 TextViews 有这个问题,但这些工作对我来说是预期的。
我已经看到它在 Android 2.2 手机上按预期工作,但按钮在 Android 4.0.4 手机和 Android 4.2.2 模拟器上保持全高。
请让我知道我可能做错了什么。此示例使用 Eclipse (Juno) 中的新应用程序向导中的所有默认值。
注意:对于我正在使用的真实应用程序
机器人:填充=“4dp”这使得 TextView 看起来不错(不影响按钮),但我在这个例子中使用了 0dp 来夸大这个问题。
活动主.xml:
<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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_gradient"
android:text="@string/hello_world" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:background="@drawable/button_gradient"
android:text="@string/hello_world" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="0dp"
android:textSize="12sp"
android:background="@drawable/button_gradient"
android:text="@string/hello_world" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="0dp"
android:textSize="12sp"
android:background="@drawable/button_gradient"
android:text="@string/hello_world" />
</LinearLayout>
button_gradient.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#0000BB"
android:endColor="#E0E0E0"
android:angle="90"/>
<corners android:radius="10dp" />
</shape>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.test.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>