这可能是在helloblank片段文本之上。我使用了
((AppCompatActivity)getActivity())getSupportActionBar()隐藏();
隐藏操作栏。 xml的代码是:
<RelativeLayout 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"
tools:context="com.example.anshul.testfindout.InfotabFragment">
<!-- TODO: Update blank fragment layout -->
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimaryDark"/>
</RelativeLayout>
答案 0 :(得分:4)
如果要隐藏所有页面中的工具栏,请使用此样式。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
这将帮助您将其隐藏在任何地方。 !如果您需要在一个页面中完成。然后按照此操作,然后使用getSupportActionBar
toolbar.setVisibility(View.GONE); //INVISIBLE will leave space and GONE will help in removing the space also.
希望这可以帮助你...
要隐藏特定片段中的工具栏,请先创建一个界面
public interface ControlToolbarInterface{
void hideToolbar();
}
然后在您的活动中实现此界面
public class YourActivity extends AppCompatActivity implements ControlToolbarInterface{
//remaining code
@Override
public void hideToolBar() {
toolbar.setVisibility(View.GONE);
}
}
然后在你的片段中
getActivity().hideToolBar();
//If still in doubt about the activity used you can further check instanceOf activity and will get the exact activity used