私は Android カードライブラリを試しており、このチュートリアルを使用して画像を表示しようとしています: https://github.com/gabrielemariotti/cardslib/blob/master/doc/THUMBNAIL.md
ただし、画像は表示されず、空のカードのみが表示されます。
私のアクティビティコードは次のとおりです。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Create a Card
Card card = new Card(this);
//Create thumbnail
CardThumbnail thumb = new CardThumbnail(this);
//Set URL resource
thumb.setUrlResource("https://lh5.googleusercontent.com/-N8bz9q4Kz0I/AAAAAAAAAAI/AAAAAAAAAAs/Icl2bQMyK7c/s265-c-k-no/photo.jpg");
//Add thumbnail to a card
card.addCardThumbnail(thumb);
//Set card in the cardView
CardViewNative cardView = (CardViewNative) this.findViewById(R.id.carddemo);
cardView.setCard(card);
}
また、次のように、ローカル リソースからこれを実行しようとしました。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Create a Card
Card card = new Card(this);
//Create thumbnail
CardThumbnail thumb = new CardThumbnail(this);
//Set ID resource
thumb.setDrawableResource(R.drawable.ic_launcher);
//Add thumbnail to a card
card.addCardThumbnail(thumb);
//Set card in the cardView
CardViewNative cardView = (CardViewNative) this.findViewById(R.id.carddemo);
cardView.setCard(card);
私のXMLは次のとおりです。
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<it.gmariotti.cardslib.library.view.CardViewNative
android:id="@+id/carddemo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:layout_marginTop="12dp"/>
<it.gmariotti.cardslib.library.view.CardViewNative
card_layout_resourceID="@layout/native_card_thumbnail_layout"
android:layout_below="@id/carddemo"
android:id="@+id/carddemo_thumb_url"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
私は何を間違っていますか?画像が読み込まれないのはなぜですか? carddemo または carddemo_thumb_url のいずれかで、XML ファイルでどのカードを指すかは問題ではないようです。どちらも機能していないようです。前もって感謝します!