gpt4 book ai didi

java - Android 高度不显示按钮上的阴影

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:32:46 25 4
gpt4 key购买 nike

无法显示按钮阴影。

将我的代码精简为最小的示例:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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">

<LinearLayout
android:id="@+id/main_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp">

<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="20dp"
android:elevation="10dp"
android:translationZ="10dp"
android:background="@android:color/holo_green_light"
android:text="BUTTON"/>

</RelativeLayout>

</LinearLayout>

</ScrollView>

我需要那个布局结构。

MainActivity.java

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}

}

阴影在 Android Studio 设计器中可见:

enter image description here

但在运行时不显示:

enter image description here

测试于:

  • Genymotion Google Nexus 5X - Marshmallow 6.0.0 - API 23
  • Genymotion Google Nexus 5 - Lollipop 5.1.0 - API 22
  • Genymotion Samsung Galaxy S2 - Jelly Bean 4.1.1 - API 16
  • 硬件设备,Samsung Galaxy S5 mini - KitKat 4.4.2 - API 19

所有相同的结果。

我正在使用:

  • Android Studio 2.1.2
  • minSdkVersion 16
  • targetSdkVersion 24

请在Andriod Studio中创建一个新项目,Empty Activity模板,然后将代码复制并粘贴到activity_main.xmlMainActivity.java中,以便测试和判断我。

最佳答案

The default Button style under Material has a StateListAnimator that controls the android:elevation and android:translationZ properties.

<子> copied from here

只需将此属性添加到您的Button。您可以使用 android:stateListAnimator 属性设置您自己的。

android:stateListAnimator="@null"

完整代码:

        <Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="20dp"
android:elevation="2dp"
android:translationZ="2dp"
android:stateListAnimator="@null"
android:background="@android:color/holo_green_light"
android:text="BUTTON">

更新日期:

为了理解我把它设置为 10dp..

xml代码:

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp">

<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="20dp"
android:elevation="10dp"
android:translationZ="10dp"
android:stateListAnimator="@null"
android:background="@android:color/holo_green_light"
android:text="BUTTON"/>

</RelativeLayout>

enter image description here

关于java - Android 高度不显示按钮上的阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38278179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com