Я использую следующий код для добавления нескольких TextViews в CommonsWare ViewSwiper, но вижу перекрывающиеся TextViews:
for (int i = 0; i < 10; i++){
LayoutInflater vi = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = vi.inflate(R.layout.c_layout, null);
// fill in any details dynamically here
TextView textView = (TextView) v.findViewById(R.id.myTextView);
textView.setText("This is text " + i);
swiper.addView(textView);
}
Ниже приведен макет для c_layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
чтодолжен быть правильный способ сделать это.