2014-08-27 1 views
1

이 프래그먼트 클래스가 있습니다. 출력이리스트 뷰에 표시되므로 위와 아래로 밀어 출력을 볼 수 있습니다. 하지만 출력을 보려면 세로로가 아닌 가로로 슬라이드하고 싶습니다. 그렇게하기 위해서는 viewPager를 사용해야한다는 것을 알게되었습니다. http://developer.android.com/training/animation/screen-slide.htmlviewPager에서 프래그먼트 클래스를 어떻게 표시합니까?

가 전체 샘플 응용 프로그램을 가지고 : 나는

Myfragmentclass

public class NewsDetailFragment extends Fragment { 

private View view1; 

    private ArrayList<BaseElement> newsdetail; 
    private LazyAdapter adapter; 
    private Activity activity; 
    private CommonVariable commonVariable; 
    private ProgressDialog dialog; 


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

     View view = inflater.inflate(R.layout.newsdetail_fragment, container, 
       false); 

     activity = this.getActivity(); 


     commonVariable = (CommonVariable) activity.getApplication(); 

     view1 = (View) view.findViewById(R.id.list); 

     dialog = new ProgressDialog(NewsDetailFragment.this.getActivity()); 
     dialog.setMessage("Loading News"); 
     dialog.setCancelable(true); 

     new BackGround().execute(); 

     return view; 
    } 



public class BackGround extends AsyncTask<Void, Void, Void> { 

     @Override 
     protected Void doInBackground(Void... params) { 

      newsdetail = JSONServices.getNewsDescription(); 

      return null; 

     } 

@SuppressWarnings("unchecked") 
@Override 
     /* check again */ 
     protected void onPostExecute(Void result) { 

      commonVariable.setTheater(newsdetail); 

      adapter = new LazyAdapter(newsdetail, activity,Element.NEWS_DETAIL.getType()); 

      ((AdapterView<ListAdapter>) view1).setAdapter(adapter); 

      dialog.dismiss(); 

      super.onPostExecute(result); 
     } 

@Override 
     protected void onPreExecute() { 
      // TODO Auto-generated method stub 

    dialog.show(); 
      super.onPreExecute(); 
     } 

    } 
} 

Layout_fragment이

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

     <ListView 
       android:id="@+id/list" 
       android:layout_height="wrap_content" 
       android:layout_width="match_parent"> 
     </ListView> 

</LinearLayout> 

답변

0

이 링크에 가서 내 다음 코드에 적용 할 수있는 방법.

관련 문제