11e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio/*
21e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * Copyright (C) 2011 The Android Open Source Project
31e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio *
41e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * Licensed under the Apache License, Version 2.0 (the "License");
51e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * you may not use this file except in compliance with the License.
61e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * You may obtain a copy of the License at
71e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio *
81e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio *      http://www.apache.org/licenses/LICENSE-2.0
91e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio *
101e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * Unless required by applicable law or agreed to in writing, software
111e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * distributed under the License is distributed on an "AS IS" BASIS,
121e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
131e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * See the License for the specific language governing permissions and
141e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio * limitations under the License.
151e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio */
161e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio
171e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Megliopackage com.android.bidi;
181e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio
197af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglioimport android.app.Fragment;
201e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglioimport android.os.Bundle;
217af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglioimport android.view.LayoutInflater;
227af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglioimport android.view.View;
237af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglioimport android.view.ViewGroup;
241e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio
257af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Megliopublic class BiDiTestRelativeLayout2Rtl extends Fragment {
261e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio
271e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio    @Override
287af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglio    public View onCreateView(LayoutInflater inflater, ViewGroup container,
297af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglio            Bundle savedInstanceState) {
307af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglio        return inflater.inflate(R.layout.relative_layout_2_rtl, container, false);
311e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio    }
321e4cfbeba54898373c852097d1519a1d966c0854Fabrice Di Meglio}
337af05226b901f2b623ca5b3ca23d8586941ef54bFabrice Di Meglio
34