スワイプして元に戻すことができるカードのリストで Cardslib ライブラリを使用しようとしています。私の問題は、元に戻すバーが常に表示され、元に戻すをクリックしても何も起こらないことです。デバッグすることで、私の問題は、CardArrayAdapter が undobar の LinearLayout を取得しようとするときに使用される Context を必要とすることであることに気付きました。しかし、メインのアクティビティをコンテキストとして渡すと、元に戻すバーが見つかりません。
私のコードは次のとおりです。
MainActivity.java:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate( savedInstanceState );
setContentView( R.layout.main_layout );
BudgetCardFragment budgetCardFragment = (BudgetCardFragment)getSupportFragmentManager().
findFragmentById( R.id.fragment_budget_cards );
}
main_layout.xml:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_budget_cards"
android:name="com.test.view.fragment.BudgetCardFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.test.Main"
tools:layout="@android:layout/list_content" />
BudgetCardFragment.java:
public class BudgetCardFragment extends Fragment {
public BudgetCardFragment(){}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate( R.layout.fragment_budget_card, container, true );
CardListView listView = (CardListView)rootView.findViewById(R.id.myList);
List<Card> cards= new ArrayList<Card>();
for (int i = 0; i < 3; i++) {
BudgetCard budgetCard = new BudgetCard( getActivity(), mListCategory.get(i).getName() );
cards.add( budgetCard );
}
BudgetCardAdapter budgetCardAdapter = new BudgetCardAdapter( getActivity(), cards );
if ( listView != null ) {
listView.setAdapter( budgetCardAdapter );
}
return rootView;
}
}
fragment_budget_card.xml:
<?xml version="1.0" encoding="utf-8"?>
<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="com.test.Main">
<it.gmariotti.cardslib.library.view.CardListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/myList"/>
<!-- Include undo message layout -->
<include layout="@layout/list_card_undo_message"/>
</RelativeLayout>
BudgetCardAdapter.java:
public class BudgetCardAdapter extends CardArrayAdapter {
private Context mContext;
private List<Card> cards;
public BudgetCardAdapter( Context context, List<Card> cards ) {
super( context, cards );
this.mContext = context;
this.cards = cards;
//Enable undo controller
setEnableUndo(true);
}
@Override
public int getCount() {
return cards.size();
}
@Override
public Card getItem(int position) {
return cards.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
}
私が取得した結果は、カードのリスト (これは良いことです) です。画面の真ん中に元に戻すバーがあり、まだカードをスワイプしていません (これは良くありません)。助けてくれてありがとう、私はこれに対する解決策を見つけるために一日中苦労してきました.