zoukankan      html  css  js  c++  java
  • 第二阶段冲刺(七)

    昨天学习了底部导航栏相关知识,解决了昨天的问题

    遇到的困难导航栏图片的大小不知道怎么设置

    今天准备学习对登录,注册界面的美化

    在部分Android手机上底部会有导航栏。在写xml布局的时候,该导航栏会遮挡住部分布局页面。
    解决方法:
    在application标签引用的theme中加入
    <item name="android:windowDrawsSystemBarBackgrounds">false</item>
    <!--fragment_text_tab.xml--><?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <FrameLayout android:id="@+id/sub_content" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"> <TextView android:id="@+id/activity_text_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:text="@string/tips" android:textColor="@color/colorPrimary" android:textSize="18sp" android:textStyle="bold|italic"/> </FrameLayout> <View android:layout_width="match_parent" android:layout_height="1px" android:background="@color/grey_300"/> <include layout="@layout/tab_layout_for_bottom"/></LinearLayout><!--tab_layout_for_bottom--><?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="56dp" android:background="@color/white" android:orientation="horizontal" tools:showIn="@layout/fragment_text_tab"> <TextView android:id="@+id/tv_home" style="@style/viewpager_navigation_bar_tab_style" android:drawableTop="@drawable/home" android:text="@string/item_home"/> <TextView android:id="@+id/tv_location" style="@style/viewpager_navigation_bar_tab_style" android:drawableTop="@drawable/location" android:text="@string/item_location"/> <TextView android:id="@+id/tv_like" style="@style/viewpager_navigation_bar_tab_style" android:drawableTop="@drawable/like" android:text="@string/item_like"/> <TextView android:id="@+id/tv_person" style="@style/viewpager_navigation_bar_tab_style" android:drawableTop="@drawable/person" android:text="@string/item_person"/></LinearLayout>
    
    
    mTHome.setOnClickListener(this); 
    mTLocation.setOnClickListener(this);
     mTLike.setOnClickListener(this);
     mTMe.setOnClickListener(this);
     setDefaultFragment();//设置默认显示Fragment 
     @Override 
    public void onClick(View view) { 
    resetTabState();//reset the tab state 
    switch (view.getId()) { 
    case R.id.tv_home: 
    setTabState(mTHome, R.drawable.home_fill, getColor(R.color.colorPrimary));//设置Tab状态 
    switchFrgment(0);//切换Fragment 
    break; 
    case R.id.tv_location: setTabState(mTLocation, R.drawable.location_fill, getColor(R.color.colorPrimary)); 
    switchFrgment(1); 
    break; 
    case R.id.tv_like:
     setTabState(mTLike, R.drawable.like_fill, getColor(R.color.colorPrimary)); switchFrgment(2);
     break; 
    case R.id.tv_person: setTabState(mTMe, R.drawable.person_fill, getColor(R.color.colorPrimary));
     switchFrgment(3); 
    break;
     } 
    }
    
    /** * switch the fragment accordting to id
     * @param i id 
    */ 
    private void switchFrgment(int i) {
     FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
     switch (i) { 
    case 0: 
    if (mHomeFragment == null) { mHomeFragment = mHomeFragment.newInstance(getString(R.string.item_home)); 
    } 
    transaction.replace(R.id.sub_content, mHomeFragment); 
    break; 
    case 1:
     if (mLocationFragment == null) { mLocationFragment = LocationFragment.newInstance(getString(R.string.item_location));
     }
     transaction.replace(R.id.sub_content, mLocationFragment); 
    break; 
    case 2:
     if (mLikeFragment == null) { mLikeFragment = LikeFragment.newInstance(getString(R.string.item_like));
     } 
    transaction.replace(R.id.sub_content, mLikeFragment); 
    break;
     case 3:
     if (mPersonFragment == null) { 
    mPersonFragment = PersonFragment.newInstance(getString(R.string.item_person));
     } 
    transaction.replace(R.id.sub_content, mPersonFragment); 
    break; 
    }
     transaction.commit();
     }
    、
    /** 
    * set the tab state of bottom navigation bar
     * 
    * @param textView the text to be shown 
    * @param image the image 
    * @param color the text color
     */
     private void setTabState(TextView textView, int image, int color) { textView.setCompoundDrawablesRelativeWithIntrinsicBounds(0, image, 0, 0);//Call requires API level 17 textView.setTextColor(color); } /** * revert the image color and text color to black */ private void resetTabState() { setTabState(mTHome, R.drawable.home, getColor(R.color.black_1)); setTabState(mTLocation, R.drawable.location, getColor(R.color.black_1)); setTabState(mTLike, R.drawable.like, getColor(R.color.black_1)); setTabState(mTMe, R.drawable.person, getColor(R.color.black_1)); 
    }
  • 相关阅读:
    FTP命令行工具NCFTP
    XP 通过无线网卡 建立对等网
    Silverlight WCF 压缩
    EntityFramework Linq查询
    UCS2编码转换C#
    C#7Z压缩
    c#公钥加密私钥解密和验证
    SVN global ignore pattern for c#
    典型的DIV CSS三行二列居中高度自适应布局
    VC#窗体的大小设置
  • 原文地址:https://www.cnblogs.com/lq13035130506/p/11005597.html
Copyright © 2011-2022 走看看