2013-02-12 62 views
-4

我想設置滾動視圖。這個怎麼做?如何保持滾動視圖?

在我的列表視圖我有10個項目view..Im只能看到7items..Remanining 3個項目,我需要一個滾動視圖,以see..Any可能是有保留scrollview..Please指導我..

<RelativeLayout 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=".Nexttopic" > 

    <ListView 
     android:id="@+id/List_view" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_centerVertical="true" > 
    </ListView> 
</RelativeLayout> 
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
     viewList = Nexttopic.this.getLayoutInflater().inflate(R.layout.activity_nexttopic, null); 
     dialogMarketList = new Dialog(Nexttopic.this); 
     dialogMarketList.requestWindowFeature(Window.FEATURE_NO_TITLE); 
     dialogMarketList.setContentView(viewList); 
     dialogMarketList.show();  
     lvForDialog = (ListView) viewList.findViewById(R.id.List_view); 
     ArrayAdapter<String> adapter = (new ArrayAdapter<String>(Nexttopic.this, R.layout.row_topic, R.id.child_row,tnamelist)); 
     lvForDialog.setAdapter(adapter); 
+0

什麼意思是「保持ScrollView」? – 2013-02-12 12:23:18

+0

@artemzinnatullin我在列表視圖中有10個項目,它只顯示7項,我想滾動以查看剩餘的3個項目,我無法滾動..請指導我.. – 2013-02-12 12:42:06

回答

0

你應該嘗試使用一種叫做:Google 對不起,我的最終答案.Read這樣的:列表視圖等有inbuild滾動功能。將其封裝在任何其他佈局中,如LinearLayout或RelativeLayout。如果仍有問題顯示某些代碼。

EDIT: 

不知道,但嘗試這個

  listview.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL); 
+0

我無法滾動.. – 2013-02-12 12:32:01

+0

如何保持滾動視圖到列表視圖.. – 2013-02-12 12:55:16

+0

列表視圖提供了它自己的默認scrollView! – Navdroid 2013-02-12 12:58:43

1

滾動型爲的是什麼?你的ListView剛纔設置的高度match_parent和很會照顧自己滾動項目

使用此佈局,而不是使用滾動型

<RelativeLayout 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=".Nexttopic" > 

    <ListView 
     android:id="@+id/List_view" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
    </ListView> 
</RelativeLayout> 
+0

在Listview我有10項不滾動,我看不到滾動... – 2013-02-12 12:29:16

+0

發佈您的活動代碼有問題 – Pratik 2013-02-12 12:31:46

+0

看到我的代碼..在問題 – 2013-02-12 12:47:20

0

沒有必要把滾動視圖爲ListView。它將根據列表視圖中的行數自動滾動。

+0

不,我可以無法滾動 – 2013-02-12 12:32:23

相關問題