我使用了<item name="android:windowTranslucentStatus">true</item>
使我的导航抽屉移动到状态栏后面。但是现在当我创建一个新活动时,它会使整个活动也移动到状态栏后面(就像图像中状态栏后面的textview:
此外,我希望状态栏颜色与新活动中的应用主题相匹配。
新活动的java文件:
public class AddStudent extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_student);
}
新活动的xml文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.gupta.aayush.tuitionmanager.AddStudent"
android:orientation="vertical">
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>