Adding extra images/icons to CardFragment (Android Wear)

前端 未结 2 1379
暖寄归人
暖寄归人 2021-02-05 23:26

I\'m looking at this sample image from Google, and trying to figure out how to implement something like this.

It looks very similar to the standard CardFragment

2条回答
  •  感动是毒
    2021-02-06 00:23

    I accomplished this by extending the CardFragment and overriding onCreateContentView:

    @Override
    public View onCreateContentView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    
        mRootView = (ViewGroup) inflater.inflate(R.layout.fragment_my_card, null);
        ...
    }
    

    This lets you control what goes on the white card.

提交回复
热议问题