作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
出于某种原因,我的工具栏
不会转换高程阴影。我什至尝试了 Java,但仍然无法正常工作。
关于为什么这没有达到预期效果有什么想法吗?我的应用不支持 Lollipop 之前的版本(最低 API 为 24)。
Activity XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/masterToolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize">
<include layout="@layout/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"/>
</LinearLayout>
<RelativeLayout
android:id="@+id/master_container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
工具栏 XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_toolbar"
android:elevation="4dp"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:minHeight="?android:attr/actionBarSize">
<LinearLayout
android:id="@+id/mytoolbar_textlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="vertical">
<TextView
android:id="@+id/mytoolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@android:style/TextAppearance.Material.Widget.ActionBar.Title"/>
</LinearLayout>
</android.support.v7.widget.Toolbar>
Activity 课
public class MyActivity extends AppCompatActivity {
private Boolean mCurrentValue;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.md);
}
@Override
protected void onStart() {
super.onStart();
setContentView(R.layout.md);
SharedPreferences mSharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
Boolean mNewValue = mSharedPreferences.getBoolean("my_preference", false);
if (mCurrentValue != mNewValue) {
recreate();
}
// ... do other stuff here
Resources r = getBaseContext().getResources();
int fourDp = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 4, r.getDisplayMetrics());
final String toolbarColour = "#EE7C0E";
Toolbar mMasterToolbar = findViewById(R.id.my_toolbar);
setSupportActionBar(mMasterToolbar);
mMasterToolbar.setBackgroundColor(Color.parseColor(toolbarColour));
mMasterToolbar.setElevation(fourDp);
mMasterToolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
final TextView mTitle = this.findViewById(R.id.toolbar_1line_title);
mTitle.setText(getString(R.string.london_overground));
FragmentMain newFragment = new FragmentMain();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.master_container, newFragment);
transaction.commit();
}
}
最佳答案
您的工具栏
中缺少android:background
。
示例:
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_toolbar"
android:elevation="4dp"
android:background="?attr/colorPrimary"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:minHeight="?android:attr/actionBarSize">
注意:为了将标高应用到任何 View ,它需要有背景。
<小时/>编辑:由于您的应用的最低 SDK 版本为 24,因此您可以使用 translationZ
属性。
关于java - 尽管设置了属性,但 AppCompat 工具栏标高缺失(使用 RecyclerView),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53156642/
我是一名优秀的程序员,十分优秀!