Android Fragment 静的に定義 サンプル

android_grid_view02

Activity に 直接GridViewを配置したものを、Fragmentに切り出す。

1.Fragment用のレイアウト

Activity から、GridView部分を移動

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="info.typea.kaigiutil.MenuItemFragment">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">
        <GridView
            android:id="@+id/grid_menu"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:numColumns="auto_fit"
            android:gravity="center">

        </GridView>
    </LinearLayout>

</FrameLayout>

2.Activityのレイアウトを修正

Fragmentをレイアウトファイルに静的に定義する、もともと、GridViewを定義していた場所をFragmentに置き換え

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="info.typea.kaigiutil.MainActivity">

    <fragment
        android:id="@+id/menu_item_fragment"
        android:name="info.typea.kaigiutil.MenuItemFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</android.support.constraint.ConstraintLayout>

3.Fragmentの実装

GridViewのアイテムをクリックしたら、トーストを表示させる。

package info.typea.kaigiutil;

import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.GridView;
import android.widget.TextView;
import android.widget.Toast;

public class MenuItemFragment extends Fragment {
    public MenuItemFragment() {
    }

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

        View v = inflater.inflate(R.layout.fragment_menu_item, container, false);
        GridView gv = (GridView)v.findViewById(R.id.grid_menu);
        gv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView parent, View view, int position, long id) {
                Toast.makeText(MenuItemFragment.this.getContext(),
                        ((TextView)view.findViewById(R.id.txt_menu_item)).getText(), Toast.LENGTH_LONG).show();
            }
        });

        return v;
    }

}

4.その他の個所

サンプルコードが最低限、コンパクトでいい感じ。最新SDK対応版がでるといいな

Follow me!

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です