2013-12-17 80 views
1

我想做到的是以下幾點:如何創建和在其他項目上使用Android庫項目

  1. 與它自己的界面和交互創建自定義組件
  2. 創建與自定義組件一個.jar
  3. 消耗另一個Android項目.jar和能夠編輯一些它的值

,因爲現在我已經做了:

1.創建一個自定義組件,並提取它的下面this link

自定義組件的內容罐子看起來是這樣的:

main.xml中:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:orientation="vertical" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
    > 
<TextView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:text="Yes!! I'm a custom component!" 
     /> 
</LinearLayout> 

有了它的MainActivity:

public class MainActivity extends Activity 
{ 
    @Override 
    public void onCreate(Bundle savedInstanceState) 
    { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 
    } 
} 

而且它自己的AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
     package="com.example.test_uc" 
     android:versionCode="1" 
     android:versionName="1.0"> 
<application android:label="@string/app_name"> 
    <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> 

2.添加它放在我的主要項目。

3.使用它在我的主XML的項目是這樣的:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:orientation="vertical" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
    > 
<TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="Hello World, MyActivity" 
     /> 
<test_uc android:layout_height="fill_parent" /> // SEE THE ITEM HERE 
</LinearLayout> 

但是,如果我去檢查接口,我看不到test_uc內容,或修改的任何事情。

所以,我的問題是:

如何建立一個自定義組件,把它做成一個jar文件,添加它主要項目,並能夠使用它的屬性,甚至看到它在我的界面?

請問,我對此有點失落。任何想法都會非常感謝!

+0

http://developer.android.com/tools/projects/projects-eclipse。html – Raghunandan

+0

我所做的或多或少是在鏈接中解釋的,但我仍然不知道爲什麼我無法在maincontent.xml中直觀地顯示我的.jar文件的內容。 – Sonhja

回答

0

我最終什麼在我的情況下做的,就是:

  1. 創建Activity
  2. 將該活動交給用戶。
  3. 將其用作庫。

由於.jar只是一個壓縮的活力,對我來說就足夠了。

我這樣做是因爲在我的情況下,我不得不做一些事件訂閱,這種方式對用戶更容易。

相關問題