0

カスタム ボタン レイアウトを作成しようとしています。xml ファイル「custom_button.xml」を作成し、それを「ButtonLanguageSelection」クラスで膨らませました。このクラスでは、onClickListener を追加しました。このクラスを「main_activity.xml」に追加しました。タッチイベントを受け取らないことを除いて、本来のように動作します。次に、「custom_button.xml」からコードをコピーし、それを膨らませずに直接追加しました.android:onClickパラメーターを追加しただけで、このように機能しました. 何が問題なのかわかりません。レイアウトは同じです。

同じようなお悩みをお持ちの方はいらっしゃいませんか?何が問題なのですか?誰かが問題を見つけるのに役立つ場合は、コードを添付しました。

助けてくれてありがとう!

custom_button.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:background="@drawable/button_language_selection_states"
          android:weightSum="1"
          android:clickable="true"
          >

<TextView
        android:id="@+id/textview_select_language"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_gravity="center"
        android:gravity="center_horizontal"
        android:paddingTop="30px"
        android:layout_weight="0.4"
        android:textSize="21sp"
        android:textColor="#333333"
/>

<View
        android:layout_width="match_parent"
        android:background="@drawable/gradient"
        android:layout_height="1dp"
        android:layout_margin="10px">
</View>

<TextView
        android:id="@+id/textview_language"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_gravity="center"
        android:paddingTop="40px"
        android:layout_weight="0.6"
        android:textSize="28sp"
        android:textColor="#ffffff"
/>

</LinearLayout>

ButtonLanguageSelection

public class ButtonLanguageSelection extends LinearLayout
{

private TextView introductoryTextView;
private TextView language;


private final String TAG = "ButtonLanguageSelection";

public ButtonLanguageSelection(Context context) {
    super(context);
}

public ButtonLanguageSelection(Context context, AttributeSet attrs)
{
    super(context, attrs);

    LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    layoutInflater.inflate(R.layout.button_language_selection, this);


    introductoryTextView = (TextView)findViewById(R.id.textview_select_language);
    language = (TextView)findViewById(R.id.textview_language);


    this.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            Log.d(TAG, "onclick");
        }
    });
}

public ButtonLanguageSelection(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

public void setIntroductoryTextView(String s)
{
    introductoryTextView.setText(s);
}

public void setLanguage(String s)
{
    language.setText(s);
}

}

main_activity.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="horizontal"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:background="@drawable/screen_welcome_bg">

<defaultpackage.ButtonLanguageSelection
        android:id="@+id/ButtonLanguageSelection_Slovene"
        android:layout_width="341px"
        android:layout_height="260px"
        android:layout_marginRight="2px"/>

<defaultpackage.ButtonLanguageSelection
        android:id="@+id/ButtonLanguageSelection_Italian"
        android:layout_width="341px"
        android:layout_height="260px"
        android:layout_marginRight="2px"/>

<!--<defaultpackage.ButtonLanguageSelection-->
        <!--android:id="@+id/ButtonLanguageSelection_English"-->
        <!--android:layout_width="341px"-->
        <!--android:layout_height="260px" />-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="341px"
              android:layout_height="260px"
              android:background="@drawable/button_language_selection_states"
              android:weightSum="1"
              android:clickable="true"
              android:onClick="sendMessage"
        >

    <TextView
            android:id="@+id/textview_select_language"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_gravity="center"
            android:gravity="center_horizontal"
            android:paddingTop="30px"
            android:layout_weight="0.4"
            android:textSize="21sp"
            android:textColor="#333333"
            />

    <View
            android:layout_width="match_parent"
            android:background="@drawable/gradient"
            android:layout_height="1dp"
            android:layout_margin="10px">
    </View>

    <TextView
            android:id="@+id/textview_language"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_gravity="center"
            android:paddingTop="40px"
            android:layout_weight="0.6"
            android:textSize="28sp"
            android:textColor="#ffffff"
            />

</LinearLayout>

4

1 に答える 1

1

問題は、すべての初期化コードを 1 つのコンストラクターだけで記述していることだと思います。init 関数を作成し、すべてのコンストラクターから呼び出すことを検討してください。また、レイアウト コンストラクター自体ではなく、アクティビティに onClick イベント リスナーを設定することも検討してください。

于 2013-05-24T15:58:35.200 に答える