-2
A
回答
0
檢查佈局現在
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/line_bet"
android:layout_width="match_parent"
android:layout_height="50dip"
android:baselineAligned="false"
android:orientation="horizontal"
android:weightSum="2" >
<LinearLayout
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal"
android:padding="3dip" >
<Button
android:id="@+id/txtWork"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#607d8b"
android:gravity="center|start"
android:singleLine="true"
android:text=""
android:textColor="@color/white"
android:textSize="@dimen/font_normal_size" />
</LinearLayout >
<LinearLayout
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal"
android:padding="3dip" >
<Button
android:id="@+id/txtNot"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:gravity="center|start"
android:singleLine="true"
android:text=""
android:textColor="@color/colorAccent"
android:textSize="@dimen/font_normal_size" />
</LinearLayout >
</LinearLayout >
,這樣做
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_name);
SetButtonChecked(true);
}
private void SetButtonChecked(boolean isSelected) {
if (isSelected) {
txtWork.setBackgroundColor(ContextCompat.getColor(YourActvityName.class, R.color.colorAccent));
txtWork.setTextColor(ContextCompat.getColor(getActivity(), R.color.white));
} else {
txtWork.setBackgroundColor(ContextCompat.getColor(YourActvityName.class, R.color.white));
txtWork.setTextColor(ContextCompat.getColor(getActivity(), R.color.colorAccent));
}
}
相關問題
- 1. 安卓:如何點擊一個按鈕
- 2. 安卓按鈕點擊並點擊
- 3. 在按鈕點擊(安卓)上更改兩個圖像
- 4. 安卓:當一個小部件的按鈕被點擊
- 5. selenium-python點擊一個按鈕總是返回一個錯誤
- 6. 安卓PopupWindow按鈕消失後點擊
- 7. 按鈕點擊安卓小部件
- 8. 安卓方向按鈕點擊動作
- 9. 安卓相機捕獲按鈕點擊
- 10. 當您點擊一個按鈕時從網頁關閉系統
- 11. 通過點擊一個按鈕調用另外兩個按鈕
- 12. 通按鈕兩個參數點擊(訪問按鈕點擊兩個字符串)
- 13. 得到哪個按鈕點擊安卓部件
- 14. 點擊一個按鈕來模擬點擊多個按鈕
- 15. 有兩個提交按鈕,知道一個被點擊的
- 16. 安卓系統檢查是否點擊了項目
- 17. 安卓系統:有什麼方法可以找出哪個視圖被點擊
- 18. 同時點擊兩個按鈕,如果其中一個覆蓋另一個按鈕
- 19. 兩個功能一個接一個地點擊按鈕時 - Pyside
- 20. 點擊一個按鈕從
- 21. 上點擊一個按鈕
- 22. 點擊一個HTML按鈕
- 23. 點擊一個按鈕
- 24. 點擊一個按鈕
- 25. 上點擊一個按鈕
- 26. WatiN點擊一個按鈕
- 27. 硒點擊一個按鈕
- 28. 創建一個表點擊一個按鈕與傳統的ASP
- 29. 在一個按鈕中運行兩個javascript函數點擊玉
- 30. 兩個功能在一個按鈕中點擊
http://stackoverflow.com/help/how-to-ask –
聽起來像一個單選按鈕' ' – 0xDEADC0DE
我看着單選按鈕,但我正在尋找正常按鈕的外觀 –