10

XML にリニア レイアウトがあり、Java を介してそのリニア レイアウトに別のリニア レイアウト (2 つのテキストビューを含む) を追加しています。タッチ イベントは完璧に機能しますが、背景色を設定して、選択した線形レイアウトを強調表示したいと考えています。ご意見をお聞かせください。

4

6 に答える 6

53

drawable フォルダに background.xml を定義する

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" 
    android:drawable="@drawable/pressed" />
<item  android:state_focused="false" 
    android:drawable="@drawable/normal" />
</selector>

drawable フォルダー内の normal.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
<solid android:color="#FFFFFF"/>    
</shape>

drawable フォルダー内の pressed.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
<solid android:color="#FF1A47"/>      
</shape>

次に、背景をレイアウトに設定します

  android:background="@drawable/background"

以下のように背景を設定することもできます

レイアウトのオンタッチ

  ll.setOnTouchListener( new View.OnTouchListener()
    {

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            // TODO Auto-generated method stub
            switch(event.getAction())
            {
        case MotionEvent.ACTION_DOWN:
            ll.setBackgroundColor(Color.RED);
            break;
            case MotionEvent.ACTION_UP:

            //set color back to default
            ll.setBackgroundColor(Color.WHITE);  
            break;
            }
            return true;        
        }
    });
于 2013-04-12T05:53:15.457 に答える
14

選択した方法 (XML/コード) に関係なく、必ずLinearLayoutクリック可能にしてください。

XML:

android:clickable="true"

コード:

myLinearLayout.setClickable(true);
于 2014-05-25T15:00:31.570 に答える
6

これが私の解決策です、それは非常に簡単です:

<LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@drawable/bg_pressed_tab"
            android:clickable="true"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:gravity="center"
            android:orientation="vertical">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:contentDescription="@string/app_name"
                android:src="@mipmap/ic_launcher" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/service_request"
                android:textColor="@color/white"
                android:textSize="@dimen/text_size_small" />

            <requestFocus />
        </LinearLayout>

bg_tab_pressed.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" android:exitFadeDuration="@android:integer/config_longAnimTime">

    <item android:drawable="@color/colorPrimaryDark" android:state_focused="true" android:state_pressed="true" />

    <item android:drawable="@color/colorPrimaryDark" android:state_focused="false" android:state_pressed="true" />

    <item android:drawable="@color/colorPrimaryDark" android:state_focused="true" android:state_pressed="false" />

    <item android:drawable="@color/colorPrimary" android:state_focused="false" android:state_pressed="false" />

</selector>
于 2016-09-14T08:03:24.117 に答える
2

selector.xml ファイルをドローアブル フォルダー (res/drawable) に配置します。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">


    <item android:drawable="@drawable/list_focused" android:state_pressed="true"/>
    <item android:drawable="@drawable/list_focused" android:state_enabled="true" android:state_focused="true" android:state_window_focused="true"/>
    <item android:drawable="@drawable/list_raw_img"/>

</selector>

xmlファイルで線形レイアウトの背景を設定します

android:background="@drawable/background"
于 2013-04-12T05:49:51.830 に答える
0

View機能を試すsetBackgroundColor()

Android のドキュメントを参照してください。

http://developer.android.com/reference/android/view/View.html#setBackgroundColor%28int%29

public void setBackgroundColor (int color)       Added in API level 1
    Sets the background color for this view.
Parameters
    color   the color of the background 
于 2013-04-12T05:50:01.520 に答える