科普篇



android:background="#106184"   背景可以直接设置成颜色,不能使用Color。Red;

还可以设置背景图片、android:background="@null"

一条分割线
            <View android:layout_width="fill_parent"
                android:layout_height="0.5dp"
                android:background="#000000"/>


    <include
        android:id="@+id/title_bar"
        layout="@layout/layout_title_mybar" />

——》对应的是相对布局的一个xml文件,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp" ></RelativeLayout>

——》在处理的时候,对应的就是,

    @ViewInject(R.id.title_bar)
    private RelativeLayout title_bar;

            title_bar.setVisibility(View.GONE);


RadioGroup+Fragment的组合,对默认Fragment显示的设置

        //RadioGroup默认选择
        // main_radio.setOnCheckedChangeListener(this); ————放在前面,部署的时候还会报错呢、、、、、、、、、
        // main_radio.check(R.id.rb_function);//首页
        main_radio.setOnCheckedChangeListener(this);
        //  main_radio.check(R.id.rb_news_center);// 空加载一次还会报错 、、、、
        radioButton.setChecked(true);   // 设置默认的Fragment来显示、




小白求科普:什么是沉浸式状态栏?

就是全屏是状态栏不是看不到的么,沉浸式状态栏就是全屏时状态栏会显示,而且和背景色一样。

Android 沉浸式状态栏攻略 让你的状态栏变色吧

http://blog.csdn.net/lmj623565791/article/details/48649563;

自己在百度一下:沉浸式状态栏、

你可能感兴趣的:(科普篇)