Android fragment 여러 페이지 전환 효과 구현

현재 앱 의 첫 페이지 대부분 화면 아래 에 Tab 탭 옵션 이 표시 되 어 있 으 며,다른 탭 을 클릭 하면 다른 화면 으로 전환 할 수 있 습 니 다.다음 그림:

우 리 는 모두 TabHost 로 이 루어 졌 지만 TabHost 가 그렇게 간단 하지 않 고 확장 성 이 매우 떨 어 지 며 Tab 항목 에 표 시 된 내용 을 임의로 맞 출 수 없 으 며 실행 은 Activity Group 에 의존 해 야 한 다 는 것 을 몰 랐 다.Activity Group 은 원래 모든 TabHost 의 하위 항목 에 하나의 단독 Activity 를 관리 하 는 데 사용 되 었 으 나 현재 폐기 되 었 습 니 다.다음은 Fragment 를 통 해 TabHost 와 같은 효 과 를 완성 합 니 다.
먼저 메 인 인터페이스 레이아웃 main 실현layout.xml:

<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/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
</FrameLayout>
 
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#000000" />
 
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#ffffff"
android:orientation="horizontal" >
 
<RelativeLayout
android:id="@+id/message_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
 
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
 
<ImageView
android:id="@+id/message_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
 
<TextView
android:id="@+id/message_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="  "
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
 
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:background="#000000" />
 
<RelativeLayout
android:id="@+id/contacts_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
 
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
 
<ImageView
android:id="@+id/contacts_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
 
<TextView
android:id="@+id/contacts_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="   "
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
 
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:background="#000000" />
 
<RelativeLayout
android:id="@+id/news_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
 
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
 
<ImageView
android:id="@+id/news_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
 
<TextView
android:id="@+id/news_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="  "
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
 
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:background="#000000" />
 
<RelativeLayout
android:id="@+id/setting_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
 
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation="vertical" >
 
<ImageView
android:id="@+id/setting_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
 
<TextView
android:id="@+id/setting_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="  "
android:textColor="#82858b" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
 
</LinearLayout>
이 레이아웃 코드 는 좀 길 지만 사실은 주로 두 부분 으로 나 뉜 다.첫 번 째 부분 은 FrameLayout 입 니 다.여 기 는 FrameLayout 의 id 를 content 로 설정 할 뿐 구체 적 인 내용 을 추가 하지 않 았 습 니 다.구체 적 인 내용 은 뒤에서 동적 으로 추가 해 야 하기 때 문 입 니 다.두 번 째 부분 은 FrameLayout 아래 의 LinearLayout 입 니 다.이 LinearLayout 에는 TabHost 와 유사 한 전체 레이아웃 이 포함 되 어 있 습 니 다.이 LinearLayout 를 4 부 로 나 누 면 각각 ImageView 와 TextView 가 표 시 됩 니 다.ImageView 는 현재 Tab 의 아이콘 을 표시 하 는 데 사 용 됩 니 다.TextView 는 현재 Tab 의 제목 을 표시 하 는 데 사 용 됩 니 다.
4 점 으로 나 뉘 기 를 기다 리 는 이상 우 리 는 자 연 스 럽 게 네 개의 Fragment 와 그들의 구 조 를 실현 해 야 한다.메시지 새로 만 들 기layot.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" >
 
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
 
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:src="@drawable/ic_launcher" />
 
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:padding="10dp"
android:text="      "
android:textSize="20sp" />
</LinearLayout>
 
</RelativeLayout>
다른 세 개의 인터페이스 가 유사 하면 일일이 열거 하지 않 는 다.그리고 이 레이아웃 에 대응 하 는 Fragment 를 만 들 려 고 합 니 다.새 MessageFragment 는 Fragment 에서 계승 합 니 다.코드 는 다음 과 같 습 니 다.

public class MessageFragment extends Fragment{
 private TextView tv;
 public View onCreateView(LayoutInflater inflater, ViewGroup container,
  Bundle savedInstanceState) {
 View messageLayout = inflater.inflate(R.layout.message, container, false);
 tv=(TextView) messageLayout.findViewById(R.id.message);
 tv.setText("      ");
 return messageLayout;
 }
 
}

우리 도 차례대로 다른 세 개의 레이아웃 의 Fragment 를 만 듭 니 다.마지막 으로 MainActivity 입 니 다.코드 는 다음 과 같 습 니 다.

public class MainActivity extends Activity implements OnClickListener {
/**
*        Fragment
*/
private MessageFragment messageFragment;
 
/**
*         Fragment
*/
private ContactsFragment contactsFragment;
 
/**
*        Fragment
*/
private NewsFragment newsFragment;
 
/**
*        Fragment
*/
private SettingFragment settingFragment;
 
/**
*       
*/
private View messageLayout;
 
/**
*        
*/
private View contactsLayout;
 
/**
*       
*/
private View newsLayout;
 
/**
*       
*/
private View settingLayout;
/**
*    Fragment    
*/
private FragmentManager fragmentManager;
 
@Override
protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 initViews();
 fragmentManager = getFragmentManager();
 //          0 tab
 setTabSelection(0);
}
 
/**
*                   ,              。
*/
 
private void initViews() {
 messageLayout = findViewById(R.id.message_layout);
 contactsLayout = findViewById(R.id.contacts_layout);
 newsLayout = findViewById(R.id.news_layout);
 settingLayout = findViewById(R.id.setting_layout);
 messageLayout.setOnClickListener(this);
 contactsLayout.setOnClickListener(this);
 newsLayout.setOnClickListener(this);
 settingLayout.setOnClickListener(this);
}
 
@Override
public void onClick(View v) {
 switch (v.getId()) {
 case R.id.message_layout:
  //       tab ,   1 tab
  setTabSelection(0);
  break;
 case R.id.contacts_layout:
  //        tab ,   2 tab
  setTabSelection(1);
  break;
 case R.id.news_layout:
  //       tab ,   3 tab
  setTabSelection(2);
  break;
 case R.id.setting_layout:
  //       tab ,   4 tab
  setTabSelection(3);
  break;
 default:
 break;
}
 
}
 
/**
*      index        tab 。
*
* @param index
*   tab      。0    ,1     ,2    ,3    。
*/
private void setTabSelection(int index) {
 //                  
 clearSelection();
 //     Fragment  
 FragmentTransaction transaction = fragmentManager.beginTransaction();
 //        Fragment,      Fragment         
 hideFragments(transaction);
 switch (index) {
 case 0:
  messageLayout.setBackgroundColor(0xff0000ff);
 
  if (messageFragment == null) {
  //   MessageFragment  ,            
  messageFragment = new MessageFragment();
  transaction.add(R.id.content, messageFragment);
  } else {
  //   MessageFragment   ,         
  transaction.show(messageFragment);
  }
  break;
 case 1:
 //        tab ,            
 contactsLayout.setBackgroundColor(0xff0000ff);
 if (contactsFragment == null) {
  //   ContactsFragment  ,            
  contactsFragment = new ContactsFragment();
  transaction.add(R.id.content, contactsFragment);
 } else {
  //   ContactsFragment   ,         
  transaction.show(contactsFragment);
 }
 break;
 case 2:
 //       tab ,            
  newsLayout.setBackgroundColor(0xff0000ff);
  if (newsFragment == null) {
  //   NewsFragment  ,            
  newsFragment = new NewsFragment();
  transaction.add(R.id.content, newsFragment);
  } else {
  //   NewsFragment   ,         
  transaction.show(newsFragment);
  }
  break;
 case 3:
  default:
  //       tab ,            
  settingLayout.setBackgroundColor(0xff0000ff);
  if (settingFragment == null) {
  //   SettingFragment  ,            
  settingFragment = new SettingFragment();
  transaction.add(R.id.content, settingFragment);
  } else {
  //   SettingFragment   ,         
  transaction.show(settingFragment);
  }
 break;
 }
 transaction.commit();
}
 
/**
*     Fragment       。
*
* @param transaction
*    Fragment       
*/
private void hideFragments(FragmentTransaction transaction) {
 if (messageFragment != null) {
  transaction.hide(messageFragment);
 }
 if (contactsFragment != null) {
  transaction.hide(contactsFragment);
 }
 if (newsFragment != null) {
  transaction.hide(newsFragment);
 }
 if (settingFragment != null) {
  transaction.hide(settingFragment);
 }
}
 
/**
*           。
*/
private void clearSelection() {
 messageLayout.setBackgroundColor(0xffffffff);
 contactsLayout.setBackgroundColor(0xffffffff);
 newsLayout.setBackgroundColor(0xffffffff);
 settingLayout.setBackgroundColor(0xffffffff);
 }
}
이렇게 해서 위의 그림 속 의 효 과 를 실현 하 였 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기