0

您好我正在尝试重新创建此按钮样式,更具体地说是“查看篮子”按钮。waitrose 应用程序按钮需要有多行文本,每行具有不同的文本大小和字体颜色等。

这是到目前为止的代码。我已经创建了按钮并正确显示,但是当您单击它时,按下的状态不起作用。我哪里错了。提前致谢。

xml按钮文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" 

    android:state_pressed="true"
    android:state_focused="true"
    android:background="@drawable/button_bg" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Some Text"

    android:state_pressed="false"
    android:state_focused="false"
        android:textColor="#ffffff" />

     <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Some Text"

    android:state_pressed="false"
    android:state_focused="false"
        android:textColor="#ffffff" />

</LinearLayout>

java file code:


    package com.buttons2;

    import com.buttons2.R;

    import android.app.Activity;
    import android.os.Bundle;
    import android.widget.Button;

    public class Buttons2Activity extends Activity {
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);

            Button button = (Button) findViewById(R.id.button1);
            setContentView(R.layout.button);


        }
    }
4

1 回答 1

0

我认为您可能需要编写一些代码来处理对文本和图像的点击,并使用它来专门设置主容器视图的选择/未选择状态(它显示正确的按下按钮状态)。

于 2012-04-09T19:04:12.287 回答