안 드 로 이 드 바 이 두 벽지 클 라 이언 트 의 메 인 프레임 워 크 구축(1)

이것 은 괜 찮 은 튜 토리 얼 입 니 다.자신 이 배 운 후에 꺼 내 서 공 유 했 습 니 다.원래 댓 글 을 다 쓰 려 고 했 는데 이렇게 하면 자신 이 블 로 그 를 쓰 는 효율 에 약간 차이 가 있 는 것 을 발 견 했 습 니 다.여러분 이 편 하 게 볼 수 있 도록 따로 쓰 겠 습 니 다.우 리 는 먼저 바 이 두 벽지 의 고객 측 이 어떤 모습 인지 알 아 보 겠 습 니 다.
这里写图片描述
우 리 는 먼저 홈 페이지 의 프레임 워 크 를 쓰 고 프로젝트 를 새로 만 듭 니 다.BaiDuWallPaper 

아 이 템 쓰기
layout_tab_item

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 <RelativeLayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_centerInParent="true">

 <ImageView
 android:id="@+id/tabImg"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_centerHorizontal="true" />

 <TextView
 android:id="@+id/tabText"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_below="@+id/tabImg"
 android:layout_centerHorizontal="true"
 android:text="@string/app_name"
 android:textColor="@android:color/white"
 android:textSize="16sp" />


 </RelativeLayout>

</RelativeLayout>

그리고 저희 가 포석 을 하나 더 써 보도 록 하 겠 습 니 다. 

<?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="70dp"
 android:orientation="horizontal">

 <include
 android:id="@+id/homeLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/selectLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/searchLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/locationLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />

 <include
 android:id="@+id/settingLayout"
 layout="@layout/layout_tab_item"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_weight="1" />


</LinearLayout>

이렇게 하면 우 리 는 조합 컨트롤 을 사용자 정의 할 수 있다.
 MyBottomLayout

package com.lgl.baiduwallpaper.view;

import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;

import com.lgl.baiduwallpaper.R;

/**
 *     
 * Created by lgl on 16/3/31.
 */
public class MyBottomLayout extends LinearLayout {

 //    RelativeLayout
 private RelativeLayout homeLayout, selectLayout, searchLayout, locationLayout, settingLayout;
 //    
 private LayoutInflater inflater;

 //    
 public MyBottomLayout(Context context, AttributeSet attrs) {
 super(context, attrs);

 initView();
 }

 /**
 *    
 */
 private void initView() {
 inflater = LayoutInflater.from(getContext());
 View view = inflater.inflate(R.layout.layout_bottom, this);
 findView(view);
 initData();
 setonClick();
 }

 /**
 *      
 */
 private void initData() {
 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home_down);
 TextView tvHome = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome.setText("  ");
 tvHome.setTextColor(Color.BLUE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect.setText("  ");
 tvSelect.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch.setText("  ");
 tvSearch.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLoaction = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLoaction.setText("  ");
 tvLoaction.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting.setText("  ");
 tvSetting.setTextColor(Color.WHITE);
 }

 /**
 *        
 *
 * @param view
 */
 private void findView(View view) {
 homeLayout = (RelativeLayout) view.findViewById(R.id.homeLayout);
 selectLayout = (RelativeLayout) view.findViewById(R.id.selectLayout);
 searchLayout = (RelativeLayout) view.findViewById(R.id.searchLayout);
 locationLayout = (RelativeLayout) view.findViewById(R.id.locationLayout);
 settingLayout = (RelativeLayout) view.findViewById(R.id.settingLayout);
 }

 /**
 *        
 */
 private void setonClick() {
 homeLayout.setOnClickListener(new lister());
 selectLayout.setOnClickListener(new lister());
 searchLayout.setOnClickListener(new lister());
 locationLayout.setOnClickListener(new lister());
 settingLayout.setOnClickListener(new lister());
 }

 /**
 *     
 */
 private class lister implements OnClickListener {

 /**
 *          
 *     
 *
 * @param v
 */
 @Override
 public void onClick(View v) {
 switch (v.getId()) {
 case R.id.homeLayout:
  initPix(0);
  break;
 case R.id.selectLayout:
  initPix(1);
  break;
 case R.id.searchLayout:
  initPix(2);
  break;
 case R.id.locationLayout:
  initPix(3);
  break;
 case R.id.settingLayout:
  initPix(4);
  break;
 }
 iCallbackListener.clic(v.getId());
 }
 }

 /**
 *       
 */
 public void initPix(int i) {
 switch (i) {
 case 0:
 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home_down);
 TextView tvHome0 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome0.setTextColor(Color.BLUE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect0 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect0.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch0 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch0.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation0 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation0.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting0 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting0.setTextColor(Color.WHITE);

 break;
 case 1:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome1 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome1.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search_down);
 TextView tvSelect1 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect1.setTextColor(Color.BLUE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch1 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch1.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation1 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation1.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting1 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting1.setTextColor(Color.WHITE);

 break;
 case 2:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome2 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome2.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect2 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect2.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find_down);
 TextView tvSearch2 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch2.setTextColor(Color.BLUE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation2 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation2.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting2 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting2.setTextColor(Color.WHITE);


 break;
 case 3:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome3 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome3.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect3 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect3.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch3 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch3.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage_down);
 TextView tvLocation3 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation3.setTextColor(Color.BLUE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more);
 TextView tvSetting3 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting3.setTextColor(Color.WHITE);

 break;
 case 4:

 homeLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_home);
 TextView tvHome4 = (TextView) homeLayout.findViewById(R.id.tabText);
 tvHome4.setTextColor(Color.WHITE);

 selectLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_search);
 TextView tvSelect4 = (TextView) selectLayout.findViewById(R.id.tabText);
 tvSelect4.setTextColor(Color.WHITE);

 searchLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_find);
 TextView tvSearch4 = (TextView) searchLayout.findViewById(R.id.tabText);
 tvSearch4.setTextColor(Color.WHITE);

 locationLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_manage);
 TextView tvLocation4 = (TextView) locationLayout.findViewById(R.id.tabText);
 tvLocation4.setTextColor(Color.WHITE);

 settingLayout.findViewById(R.id.tabImg).setBackgroundResource(R.mipmap.image_tabbar_button_more_down);
 TextView tvSetting4 = (TextView) settingLayout.findViewById(R.id.tabText);
 tvSetting4.setTextColor(Color.BLUE);

 break;
 }
 }
}

저희 가 운행 을 해 보도 록 하 겠 습 니 다.
这里写图片描述
다음 에 우 리 는 그 로 하여 금 옵션 카드 를 바 꿀 수 있 게 한다.우 리 는 인 터 페 이 스 를 정의 한다.

 /**
 *        
 */
 public interface ICallbackListener {
 public void clic(int id);
 }

 ICallbackListener iCallbackListener = null;

 public void setonCallbackListener(ICallbackListener iCallbackListener) {
 this.iCallbackListener = iCallbackListener;
 }

이어서 데이터 초기 화

 /**
 *           
 */
 private void initPagerContent(android.app.Fragment fragment) {
 FragmentManager manager = getFragmentManager();
 android.app.FragmentTransaction ft = manager.beginTransaction();
 ft.replace(R.id.myContent,fragment);
 ft.commit();
 }
그리고 저희 가 인용 할 때 바로 new 를 할 수 있어 요.

 /**
 *     
 */
 private class MyCallbackListener implements MyBottomLayout.ICallbackListener {

 @Override
 public void clic(int id) {
 switch (id) {
 case R.id.homeLayout:
  initPagerContent(new HomeFragment());

  break;
 case R.id.selectLayout:
  initPagerContent(new SelectFragment());

  break;
 case R.id.searchLayout:
  initPagerContent(new SearchFragment());

  break;
 case R.id.locationLayout:
  initPagerContent(new LoactionFragment());

  break;
 case R.id.settingLayout:
  initPagerContent(new SettingFragment());

  break;

 }
 }
 }

 저희 가 좀 더 운행 을 해 보도 록 하 겠 습 니 다. 
这里写图片描述
그러나 한 가 지 는 우리 가 미끄럼 을 실현 해 야 한 다 는 것 을 알 아야 한다.그러면 우 리 는 viewpager 를 사용 해 야 한다.
 layout_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent">


 <android.support.v4.view.ViewPager
 android:id="@+id/myViewPager"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_above="@+id/myBottomLayout" />

 <com.lgl.baiduwallpaper.view.MyBottomLayout
 android:id="@+id/myBottomLayout"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_alignParentBottom="true"
 android:background="@mipmap/image_titlebar_background" />
</RelativeLayout>

구체 적 으로 메 인 액 티 비 티 코드 를 바로 붙 이 겠 습 니 다.

 package com.lgl.baiduwallpaper;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;

import com.lgl.baiduwallpaper.fragment.HomeFragment;
import com.lgl.baiduwallpaper.fragment.LoactionFragment;
import com.lgl.baiduwallpaper.fragment.SearchFragment;
import com.lgl.baiduwallpaper.fragment.SelectFragment;
import com.lgl.baiduwallpaper.fragment.SettingFragment;
import com.lgl.baiduwallpaper.view.MyBottomLayout;

/**
 *    
 */
public class MainActivity extends FragmentActivity {

 private MyBottomLayout myBottomLayout;
 private ViewPager viewpager;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);

 initView();
 }

 /**
 *    
 */
 private void initView() {
// initPagerContent(new HomeFragment());
 findView();
 setOnclick();
 }

// /**
// *           
// */
// private void initPagerContent(android.app.Fragment fragment) {
// FragmentManager manager = getFragmentManager();
// android.app.FragmentTransaction ft = manager.beginTransaction();
// ft.replace(R.id.myContent,fragment);
// ft.commit();
// }

 /**
 *     
 */
 private void setOnclick() {
 myBottomLayout.setonCallbackListener(new MyCallbackListener());
 }

 /**
 *     
 */
 private void findView() {
 myBottomLayout = (MyBottomLayout) findViewById(R.id.myBottomLayout);

 viewpager = (ViewPager) findViewById(R.id.myViewPager);
 viewpager.setAdapter(new MyFragmentAdapter(getSupportFragmentManager()));
 //    
 viewpager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
 @Override
 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {

 }

 @Override
 public void onPageSelected(int position) {
 myBottomLayout.initPix(position);
 }

 @Override
 public void onPageScrollStateChanged(int state) {

 }
 });
 }

 /**
 *     
 */
 private class MyCallbackListener implements MyBottomLayout.ICallbackListener {

 @Override
 public void clic(int id) {
 switch (id) {
 case R.id.homeLayout:
//  initPagerContent(new HomeFragment());
  viewpager.setCurrentItem(0);
  break;
 case R.id.selectLayout:
//  initPagerContent(new SelectFragment());
  viewpager.setCurrentItem(1);
  break;
 case R.id.searchLayout:
//  initPagerContent(new SearchFragment());
  viewpager.setCurrentItem(2);
  break;
 case R.id.locationLayout:
//  initPagerContent(new LoactionFragment());
  viewpager.setCurrentItem(3);
  break;
 case R.id.settingLayout:
//  initPagerContent(new SettingFragment());
  viewpager.setCurrentItem(4);
  break;

 }
 }
 }

 /**
 * viewpager adapter
 */
 private class MyFragmentAdapter extends FragmentPagerAdapter {

 public MyFragmentAdapter(FragmentManager fm) {
 super(fm);
 }

 @Override
 public Fragment getItem(int position) {
 switch (position) {
 case 0:
  return new HomeFragment();
 case 1:
  return new SelectFragment();
 case 2:
  return new SearchFragment();
 case 3:
  return new LoactionFragment();
 case 4:
  return new SettingFragment();
 }
 return null;
 }

 @Override
 public int getCount() {
 //5   
 return 5;
 }
 }
}
주로 당신 이 전환 할 때 setCurrent Item(id);viewpager 의 미끄럼 을 동시에 감청 하면 자 유 롭 게 전환 할 수 있 습 니 다.실행 하 겠 습 니 다.
这里写图片描述
원본 다운로드:안 드 로 이 드 모방 바 이 두 벽지 클 라 이언 트
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기