"黑科技" - Eclipse使用RecyclerView

之所以取名“黑科技”,因爲現在主流就是使用Android Studio,Eclipse主要是用來維護舊項目,還有就是現在想在Eclipse使用新5.+功能真的不方便,我是搞了N遍才OK了的。網上還好少人聊這個?我自己記錄一下

  • 拷貝adt-bundle-linux-x86_64-20140702/sdk/extras/android/support/v7/appcompat/opt/adt-bundle-linux-x86_64-20140702/sdk/extras/android/support/v7/recyclerview到自己目錄下

  • project.properties添加Library

android.library.reference.1=../appcompat
android.library.reference.2=../recyclerview
  • values目錄添加colors.xml,內容如下
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#67cc26</color>
    <color name="colorPrimaryDark">#67cc26</color>
    <color name="colorAccent">#67cc26</color>
</resources>
  • values目錄下styles.xml內容修改爲:
<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>
  • 新增values-v21目錄,添加文件styles.xml,內容如下
<resources>
    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
        <item name="android:windowDrawsSystemBarBackgrounds">true</item>
        <item name="android:statusBarColor">@android:color/transparent</item>
    </style>
</resources>
  • AndroidManifest.xml內容
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.recyclerviewdemo"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="15"
        android:targetSdkVersion="22" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

變更Theme爲android:theme="@style/AppTheme.NoActionBar"

  • activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/holo_blue_dark"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.recyclerviewdemo.MainActivity" >

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>
  • MainActivity.java測試內容
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Log.d("xujie", "AppCompatActivity Success."); 
    RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recyclerView);
    Log.d("xujie", "RecyclerView Success."); 
}

@Override
protected void onResume() {
    super.onResume();
    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {
        View decorView = getWindow().getDecorView();
        // Hide the status bar.
        int uiOptions = View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
//                    | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
//                    | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
//                    | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY //
//                    | View.SYSTEM_UI_FLAG_IMMERSIVE //
                ;
        decorView.setSystemUiVisibility(uiOptions);
    }
}

示例源碼

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章