2
我想要執行來自XML的自定義視圖。從xml創建自定義視圖
這裏是我的XML:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/movieTitle"
android:text="@string/movietitle"
android:textSize="35dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
/>
<com.galite.headliner.views.LoaderImageView
android:id="@+id/moviePoster"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/movieTitle"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:contentDescription="@string/poster"
/>
<TextView
android:id="@+id/movieDescription"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/description"
android:layout_below="@id/moviePoster"
android:gravity="center"
/>
</RelativeLayout>
,我想充氣到自定義視圖,因爲我需要使用類似的onClick和一切方法。
這裏是我的構造函數:
public MyView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.context = context;
initializeView();
}
public void initializeView(){
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.movie, null);
}
我怎樣才能讓MyView的等於V?
類型LayoutInflater中的方法inflate(int,ViewGroup,boolean)不適用於參數(int,MovieView,boolean) – Tsunaze 2012-02-25 19:06:38
@Tsunaze對不起,我編輯了我的答案。 – Luksprog 2012-02-25 19:08:14