僅僅寫個xml就夠了,太簡單了 ...
僅僅寫個xml就夠了,太簡單了
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="@drawable/timg" tools:context=".MainActivity"> <TextView android:layout_marginTop="200dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="想看妹子嗎?身為男人不想看妹子怕是個沙雕吧,本站提供豐富的妹子資源,盡請享受" android:textColor="@color/colorAccent" <!-- 下麵開始對於輪播的設置 --> android:singleLine="true"<!--是否單行顯示--> android:ellipsize="marquee"<!--超出部分進行輪播顯示 --> android:focusable="true"<!-- 下麵這兩個屬性和焦點有關,反正設置為true就好了--> android:focusableInTouchMode="true" <!-- 輪播設置完畢 --> android:padding="20dp"/> </LinearLayout>