多排多口风格的按钮

时间:2012-04-09 17:25:54

标签: android button

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

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

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);


        }
    }

1 个答案:

答案 0 :(得分:0)

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