Android默认状态栏上的后退操作

时间:2018-07-19 11:03:15

标签: android performance react-native

我正在一个项目中,在屏幕上我想要一个标题,但不想要后退按钮,这在android中是默认的,我尝试了以下操作,但无法解决。

static navigationOptions = {
  title: 'Please sign in',
  };

&&

static navigationOptions = {
headerTitle: 'Your Bmi details',
headerRight: (
 <Button
   onPress={() => alert('This is a button!')}
   title="Info"
   color="#fff"
 />
),
}}

我想要标题栏上的“标题”和“按钮”。我已经附上了屏幕截图,请检查并帮助我解决问题。

enter image description here

有人可以帮我吗?

谢谢。

2 个答案:

答案 0 :(得分:0)

在您的AndroidManifest.xml文件中,您在其中声明了以下活动:

 <activity android:name=".SecondAvtivity"
        android:parentActivityName=".MainActivity">

只需删除父活动名称

 <activity android:name=".SecondAvtivity">

应该解决问题

答案 1 :(得分:0)

要进行反应导航,请使后退按钮消失:

navigationOptions:  {
    title: 'Your Bmi details',
    headerRight: (
    <Button
    onPress={() => alert('This is a button!')}
    title="Info"
    color="#fff"
    />
    ),
    headerLeft: null
  }

希望这会有所帮助!