7

在我們的應用程序中,我們試圖動態地將碎片添加到GridLayout。 XML格式的空網格佈局和片段的佈局一樣。在運行時,我們檢查一些數據,並從中確定要添加到佈局的片段數量以及每個片段使用的佈局。當我們有片段爲其生成的視圖分配一個大小時,它將全部工作,但是如果我們在片段的佈局文件中指定大小,那麼在網格佈局中什麼都不顯示。顯然,我們可以在創建視圖時簡單地指定大小,但我們希望在片段的xml佈局中執行此操作,因爲這樣可以讓我們利用Android的內置系統爲每個設備選擇正確的佈局。向GridLayout動態添加xml佈局的碎片不是工作

我正在使用支持庫碎片。我沒有使用支持庫網格佈局,如果有差別

相關的代碼和XML如下:

的網格佈局XML:

<?xml version="1.0" encoding="utf-8"?> 
<merge xmlns:android="http://schemas.android.com/apk/res/android"> 
    <ScrollView 
     android:id="@+id/grid_scroll" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_above="@+id/bottom_fragment" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginRight="8dp" 
     android:layout_marginTop="?android:attr/actionBarSize" 
     android:overScrollMode="ifContentScrolls" > 

     <GridLayout 
      android:id="@+id/grid" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:alignmentMode="alignMargins" 
      android:animateLayoutChanges="true" 
      android:columnCount="3" 
      android:columnOrderPreserved="true" 
      android:orientation="horizontal" 
      android:overScrollMode="ifContentScrolls" 
      android:rowOrderPreserved="true" > 
     </GridLayout> 
    </ScrollView> 
</merge> 

一個的片段XML

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

    <Button 
     android:id="@+id/button1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:alpha="1.0" /> 
</RelativeLayout> 

片段onCr eateView()方法

@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 
    super.onCreateView(inflater, container, savedInstanceState); 
    View view; 
    GridLayout.Spec rowSpec = GridLayout.spec(mRowStart, mRowSpan); 
    GridLayout.Spec columnSpec; 
    GridLayout.LayoutParams childParams; 
    if (large) {; 
     view = inflater.inflate(R.layout.my_place_large, container, false); 
     columnSpec = GridLayout.spec(mColumnStart, 2); 
     childParams = new GridLayout.LayoutParams(rowSpec, columnSpec); 
     //childParams.width = 200; //If I do this everything works regardless of the layout size 
    } else { 
     view = inflater.inflate(R.layout.my_place_small, container, false); 
     columnSpec = GridLayout.spec(mColumnStart, 1); 
     childParams = new GridLayout.LayoutParams(rowSpec, columnSpec); 
     //childParams.width = 100; //If I do this everything works regardless of the layout size 
    } 
    childParams.setMargins(0, 0, 0, 0); 
    //childParams.height = 100; //If I do this everything works regardless of the layout size 
    view.setLayoutParams(childParams); 
    view.setId(ID); 
    return view; 
} 

要片段添加到佈局

private void populateGrid() { 
    RelativeLayout gridParent = (RelativeLayout) mParentActivity.findViewById(R.id.locations); 
    mLocationsGrid = (GridLayout) gridParent.findViewById(R.id.grid); 
    nColumns = mLocationsGrid.getColumnCount(); 
    mAdapter = new MyAdapter(mContext, this, mResolver); //This is how I keep track of the various fragments depending on my app's state 
    int nCards = mAdapter.getNumberOfCards(); 
    FragmentManager fragmentManager = mParentActivity.getSupportFragmentManager(); 
    FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction(); 
    for (int i = 0; i < nCards; ++i) { 
     fragmentTransaction.add(mLocationsGrid.getId(), mAdapter.getFragmentAtIndex(i), String.valueOf(i)); 
    } 
    fragmentTransaction.commit(); 
    mPopulated = true; 
} 

我認爲應該覆蓋它。只需重申一下,如果我取消在onCreateView()中顯式設置維度的行的註釋,它們將在GridLayout中正確顯示,因此我知道所有跟蹤片段和此類作品的事情,就像片段事務一樣。當我嘗試在片段的xml中指定大小時出現問題,在這種情況下,我得到一個空白屏幕。

你的想法,建議和思考表示讚賞。 謝謝, Jared

回答

6

這是非常晚,但在這個可能仍然有用的機會。問題在於,當您動態設置新的LayoutParams時,您正在覆蓋XML佈局參數。 IE,當你這樣做的時候:

view.setLayoutParams(childParams); 

這會擦除XML的原始高度和寬度設置。僅僅因爲你將代碼中的childParams寬度/高度留空並不意味着沒有設置值。在GridLayout的情況下,它們設置爲undefined

該修復程序將首先保存視圖的現有LayoutParam的高度/寬度,並在創建新的LayoutParam時動態使用該修補程序。示例:

if (large) {; 
    view = inflater.inflate(R.layout.my_place_large, container, false); 
    ViewGroup.LayoutParams oldParams = view.getLayoutParams(); 
    columnSpec = GridLayout.spec(mColumnStart, 2); 
    childParams = new GridLayout.LayoutParams(rowSpec, columnSpec); 
    childParams.width = oldParams.width; 
} 

這將允許您在應用代碼中的行/列規格時保持XML的寬度/高度。

+1

這實際上就是我們所做的。我會給你選定的答案,因爲你花時間寫出來,清楚。 – Jared