1222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio/*
2222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * Copyright (C) 2011 The Android Open Source Project
3222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio *
4222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * Licensed under the Apache License, Version 2.0 (the "License");
5222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * you may not use this file except in compliance with the License.
6222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * You may obtain a copy of the License at
7222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio *
8222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio *      http://www.apache.org/licenses/LICENSE-2.0
9222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio *
10222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * Unless required by applicable law or agreed to in writing, software
11222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * distributed under the License is distributed on an "AS IS" BASIS,
12222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * See the License for the specific language governing permissions and
14222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio * limitations under the License.
15222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio */
16222688682e6e072076489d8203d01bdf2366101aFabrice Di Megliopackage com.android.bidi;
17222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio
18222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglioimport android.app.Fragment;
19222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglioimport android.os.Bundle;
20222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglioimport android.view.LayoutInflater;
21222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglioimport android.view.View;
22222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglioimport android.view.ViewGroup;
23222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio
24222688682e6e072076489d8203d01bdf2366101aFabrice Di Megliopublic class BiDiTestTextViewDirectionLtr extends Fragment {
25222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio
26222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio    @Override
27222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio    public View onCreateView(LayoutInflater inflater, ViewGroup container,
28222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio            Bundle savedInstanceState) {
29222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio        return inflater.inflate(R.layout.textview_direction_ltr, container, false);
30222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio    }
31222688682e6e072076489d8203d01bdf2366101aFabrice Di Meglio}
32