2015-09-10 65 views
0

我有簡單的列表視圖和卡片視圖,然後我使用Adapter來創建列表,而列表項是線性佈局中的那些卡片。其實列表滾動,但一旦接觸卡,它不會。帶有CardView的ListView的LinearLayout

下面是一個例子:

enter image description here

好,如果iTouch的有上雙方將滾動,否則它不會......如何解決這個問題?

編輯:here`s代碼

ListView myList = (ListView) findViewById(android.R.id.list); 
ListAdapter LAdapter= new SimpleAdapter(
ActivityMain.this, jsonList, R.layout.list_items, new String[]{sTITLE, sUSER}, new int[]{R.id.title_dayo, R.id.user_dayo}); myList.setAdapter(LAdapter); 

和here`s佈局 enter image description here

+0

您可以發佈適配器和實現的代碼嗎? –

+0

在這裏,我上傳適配器的佈局:) –

回答

0

固定的,以及問題實際上是另一回事,這代碼和這個佈局實際工作。問題在於我使用另一個RecycleView而不是ListView