Android連載14-適應不一樣分辨率而編寫碎片

1、編輯佈局android

1.分別來寫兩個佈局:一個用於平板等大屏幕分辨率的,一個用於手機等小屏幕分辨率的,先寫小的,地址:layout/activity_main.xmlgit

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent">

   

    <fragment

        android:id="@+id/news_title_fragment"

        android:name="com.example.fragmentbestpractice.NewsTitleFragment"

        android:layout_width="match_parent"

        android:layout_height="match_parent" />

   

   

</LinearLayout>

而後再layout並列地方寫一個大分辨率的佈局github

地址:layout-sw600dp/activity_main.xml微信

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent" >

   

    <fragment

        android:id="@+id/news_title_fragment"

        android:name="com.example.fragmentbestpractice.NewsTitleFragment"

        android:layout_width="0dp"

        android:layout_height="match_parent"

        android:layout_weight="1" />

   

    <FrameLayout

        android:id="@+id/news_content_layout"

        android:layout_width="0dp"

        android:layout_height="match_parent"

        android:layout_weight="3" >

       

        <fragment

            android:id="@+id/news_content_fragment"

            android:name="com.example.fragmentbestpractice.NewsContentFragment"

            android:layout_width="match_parent"

            android:layout_height="match_parent" />

    </FrameLayout></LinearLayout>

編寫了兩個界面。app

2、修改主活動ide

package com.example.fragmentbestpractice;

​

import android.app.Activity;

import android.os.Bundle;

import android.view.Menu;

import android.view.MenuItem;

import android.view.Window;

​

public class MainActivity extends Activity {

​

  @Override

  protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);

    setContentView(R.layout.activity_main);

  }

​

  @Override

  public boolean onCreateOptionsMenu(Menu menu) {

    // Inflate the menu; this adds items to the action bar if it is present.

    getMenuInflater().inflate(R.menu.main, menu);

    return true;

  }

​

  @Override

  public boolean onOptionsItemSelected(MenuItem item) {

    // Handle action bar item clicks here. The action bar will

    // automatically handle clicks on the Home/Up button, so long

    // as you specify a parent activity in AndroidManifest.xml.

    int id = item.getItemId();

    if (id == R.id.action_settings) {

      return true;

    }

    return super.onOptionsItemSelected(item);

  }

}

 

這樣運行咱們的APP佈局

 

連載了數日android了,前面的東西有些忘了,將來的andorid連載將會專一於複習以前學的。​學習

3、源碼:大數據

1.項目地址ui

https://github.com/ruigege66/Android/tree/master/FragmentBestPractise

2.CSDN:https://blog.csdn.net/weixin_44630050

3.博客園:https://www.cnblogs.com/ruigege0000/

4.歡迎關注微信公衆號:傅里葉變換,我的公衆號,僅用於學習交流,後臺回覆」禮包「,獲取大數據學習資料

 

相關文章
相關標籤/搜索