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 つで使用したいので、これが必要です。いくつかのコードを教えてください。君たちありがとう!