大约有 13,000 项符合查询结果(耗时:0.0329秒) [XML]
Add margin between a RadioButton and its label in Android?
... little bit of space between a RadioButton and the label while still using Android's built-in components? By default the text looks a little scrunched.
...
How to click or tap on a TextView text
...a way to run a method on tapping or clicking a TextView line of text in an Android App.
8 Answers
...
Android: How to change CheckBox size?
...set the related drawables and set them in the checkbox:
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="new checkbox"
android:background="@drawable/my_checkbox_background"
android:button="@drawable/my_checkbox" />
The t...
What's the difference between fill_parent and wrap_content?
In Android, when layout out widgets, what's the difference between fill_parent ( match_parent in API Level 8 and higher) and wrap_content ?
...
How to change color of Android ListView separator line?
...
You can set this value in a layout xml file using android:divider="#FF0000". If you are changing the colour/drawable, you have to set/reset the height of the divider too.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="w...
Set selected index of an Android RadioGroup
Is there a way to set the selected index of a RadioGroup in android, other than looping through the child radiobuttons and selecting checking the radio button at the selected index?
...
How to draw border on just one side of a linear layout?
...ne side
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#FF0000" />
</shape>
</item>
<item android:left="5dp">...
Android: combining text & image on a Button or ImageButton
...the background.
If you are looking for something similar in xml there is:
android:background attribute which works the same way.
share
|
improve this answer
|
follow
...
How to change title of Activity in Android?
...
Just an FYI, you can optionally do it from the XML.
In the AndroidManifest.xml, you can set it with
android:label="My Activity Title"
Or
android:label="@string/my_activity_label"
Example:
<activity
android:name=".Splash"
android:label="@string/splash_act...
Shadow Effect for a Text in Android? [duplicate]
...
Perhaps you'd consider using android:shadowColor, android:shadowDx, android:shadowDy, android:shadowRadius; alternatively setShadowLayer() ?
share
|
im...