1bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio/*
2bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * Copyright (C) 2012 The Android Open Source Project
3bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio *
4bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * Licensed under the Apache License, Version 2.0 (the "License");
5bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * you may not use this file except in compliance with the License.
6bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * You may obtain a copy of the License at
7bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio *
8bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio *      http://www.apache.org/licenses/LICENSE-2.0
9bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio *
10bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * Unless required by applicable law or agreed to in writing, software
11bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * distributed under the License is distributed on an "AS IS" BASIS,
12bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * See the License for the specific language governing permissions and
14bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio * limitations under the License.
15bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio */
16bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio
17bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Megliopackage com.android.bidi;
18bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio
19bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglioimport android.app.Fragment;
20bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglioimport android.os.Bundle;
21bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglioimport android.view.LayoutInflater;
22bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglioimport android.view.View;
23bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglioimport android.view.ViewGroup;
24bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio
25bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Megliopublic class BiDiTestGridLayoutLocale extends Fragment {
26bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio
27bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio    @Override
28bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio    public View onCreateView(LayoutInflater inflater, ViewGroup container,
29bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio            Bundle savedInstanceState) {
30bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio        return inflater.inflate(R.layout.grid_layout_locale, container, false);
31bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio    }
32bf2ab0b80c43fae0f26db9417b0247618319931aFabrice Di Meglio}
33