TextSwitcher 사용 public class MainActivity extends AppCompatActivity { private TextSwitcher textSwitcher; private Button nextButton; private int stringIndex = 0; private String[] row = {"ONE", "TWO", "THREE", "FORE", "FIVE"}; private TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textSwi..
SearchView + RecyclerView RecyclerView & CardView Dependencies:developer.android.com/topic/libraries/support-library/packages.html#v7-recyclerviewdeveloper.android.com/topic/libraries/support-library/packages.html#v7-cardview dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:27.1.0' implementation 'com.android.support:design:..
BottomNavigationView dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:27.0.0' implementation 'com.android.support:design:27.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementa..