[Solved] How to do these android buttons

<?xml version=”1.0″ encoding=”utf-8″?> <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:orientation=”horizontal”> <Button style=”@style/Base.Widget.AppCompat.Button.Borderless” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_weight=”1″ android:background=”@null” android:text=”Criar Contan” android:textAllCaps=”true” /> <View android:layout_width=”1dp” android:layout_height=”match_parent” android:layout_marginBottom=”16dp” android:layout_marginTop=”16dp” android:background=”@color/background_grey” /> <Button style=”@style/Base.Widget.AppCompat.Button.Borderless” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_weight=”1″ android:text=”Entrar” android:textAllCaps=”true” /> 2 solved How to do these android buttons

[Solved] Implementing ViewPager for displaying the images that comes from server

First you need a custom viewpager adapter : Picasso is a great library to load images from. I will give you a link in case you need further help understanding it : http://square.github.io/picasso/ public class ViewPagerAdapter extends PagerAdapter { Context c; private List<String> _imagePaths; private LayoutInflater inflater; public ViewPagerAdapter(Context c, List<String> imagePaths) { this._imagePaths = … Read more