PagerTabStrip を使用して現在のページを示すビューページャーがあります。ただし、デフォルトのインジケーターが存在することは望ましくありません。(ページタイトルの下にアンダーライン)
削除するためにいくつかの異なる方法を試しましたが、どれもうまくいかないようです。
PagerTabStrip pts = (PagerTabStrip) findViewById(R.id.pager_title_strip); pts.setTabIndicatorColor(getResources().getColor(android.R.color.transparent));
また
PagerTabStrip pts = (PagerTabStrip) findViewById(R.id.pager_title_strip); pts.setTabIndicatorColor(Color.parseColor("#80000000"));
と
PagerTabStrip pts = (PagerTabStrip) findViewById(R.id.pager_title_strip); pts.setTabIndicatorColor(Color.TRANSPARENT);
これらのどれも機能していないようです。代わりに、黒いインジケーターが表示されます。どんな助けでも大歓迎です。ありがとう!