大约有 3,583 项符合查询结果(耗时:0.0335秒) [XML]
How to change spinner text size and text color?
In my Android application, I am using spinner, and I have loaded data from the SQLite database into the spinner, and it's working properly. Here is the code for that.
...
Scrollview vertical and horizontal in android
...a good solution:
Custom ScrollView:
package com.scrollable.view;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.ScrollView;
public class VScroll extends ScrollView {
public VScroll(Context context, AttributeSet attrs,...
Can I draw rectangle in XML?
...ade earlier:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview_background_shape">
<stroke android:width="2dp" android:color="#ff207d94" />
<padding android:left="2dp"
android:top="2...
Android: textColor of disabled button in selector not showing?
...olor.xml.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- disabled state -->
<item android:state_enabled="false" android:color="#9D9FA2" />
<item android:color="#000"/>
</selector>
In your ...
Is there a unique Android device ID?
Do Android devices have a unique ID, and if so, what is a simple way to access it using Java?
52 Answers
...
Standard Android Button with a different color
I'd like to change the color of a standard Android button slightly in order to better match a client's branding.
20 Answers...
NoClassDefFoundError: android.support.v7.internal.view.menu.MenuBuilder
There is an issue with the Android appcompat v7 library on Samsung devices running Android 4.2. I keep getting crashes with the following stack trace in my Developer Console:
...
Using Intent in an Android application to show another activity
In my Android application, I have two activity classes. I have a button on the first one and I want to show the second when it is clicked, but I get an error. Here are the classes:
...
Android Camera : data intent returns null
I have an android application which contains multiple activities.
11 Answers
11
...
How do I create a transparent Activity on Android?
...utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay"&...