1

xml ファイルに GridView を作成しましたが、Fragment クラスに入力したいと考えています。(この Fragment クラスはそのレイアウトを使用します)

userhome.xml

<GridView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/home_gridview"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:layout_below="@+id/user_avatar"
android:paddingTop="16dp"
android:columnWidth="90dp"
android:numColumns="auto_fit"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center" />

public class UserHomeFragment extends Fragment {

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    return inflater.inflate(R.layout.userhome, container, false);

}

「home_gridview」の取得方法が本当にわかりません。すべてを試しましたが、うまくいきませんでした! アクションバーのタブの 1 つで使用したいので、これが必要です。いくつかのコードを教えてください。君たちありがとう!

4

1 に答える 1

2

GridView次のように内部LinearLayout(または他のレイアウト)をラップします。

<LinearLayout 
GridView xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/home_layout"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:orientation="vertical">
    <GridView android:id="@+id/home_gridview"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:layout_below="@+id/user_avatar"
    android:paddingTop="16dp"
    android:columnWidth="90dp"
    android:numColumns="auto_fit"
    android:verticalSpacing="10dp"
    android:horizontalSpacing="10dp"
    android:stretchMode="columnWidth"
    android:gravity="center" />
</LinearLayout>

今あなたのIDをonCreateView見つけてください:GridView

public class UserHomeFragment extends Fragment {

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View view =  inflater.inflate(R.layout.userhome, container, false);
    GridView gridView = (GridView) view.findViewById(R.id.home_gridview);//must be your R not android.R
    //use your grid view

   return view;

}
于 2012-07-15T17:09:31.153 に答える