1
我想做到的是以下幾點:如何創建和在其他項目上使用Android庫項目
- 與它自己的界面和交互創建自定義組件
- 創建與自定義組件一個.jar
- 消耗另一個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文件,添加它主要項目,並能夠使用它的屬性,甚至看到它在我的界面?
請問,我對此有點失落。任何想法都會非常感謝!
http://developer.android.com/tools/projects/projects-eclipse。html – Raghunandan
我所做的或多或少是在鏈接中解釋的,但我仍然不知道爲什麼我無法在maincontent.xml中直觀地顯示我的.jar文件的內容。 – Sonhja