大约有 40,000 项符合查询结果(耗时:0.0236秒) [XML]
Right align text in android TextView
...
I think that you are doing this: android:layout_width = "wrap_content"
If this is the case, do this: android:layout_width = "match_parent"
share
|
improve t...
Soft keyboard open and close listener in an activity in Android
...
This only works when android:windowSoftInputMode of your activity is set to adjustResize in the manifest. You can use a layout listener to see if the root layout of your activity is resized by the keyboard.
I use something like the following bas...
Android getting value from selected radiobutton
...
Tested and working. Check this
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import and...
How do you set EditText to only accept numeric values in Android?
...
Add android:inputType="number" as an XML attribute.
share
|
improve this answer
|
follow
...
error: No resource identifier found for attribute 'adSize' in package 'com.google.example' main.xml
...
Replace /res/ with /lib/ in your custom layout nampespace.
xmlns:android="http://schemas.android.com/apk/res/android"
in your case, would be:
xmlns:yourApp="http://schemas.android.com/apk/lib/com.yourAppPackege.yourClass"
I hope it helps.
...
Android - set TextView TextStyle programmatically?
...
Actually textview.getTypeface().getStyle() is android:textStyle
– Pierre
Mar 19 '19 at 8:27
add a comment
|
...
Jar Mismatch Found 2 versions of android-support-v4.jar in the dependency list
I am trying to create 2 versions of an Android app (free/paid). I have an Android Library that contains files common to both. I created a new Android project and am trying to use the Library but get the error below:
...
Changing API level Android Studio
I want to change the minimum SDK version in Android Studio from API 12 to API 14. I have tried changing it in the manifest file, i.e.,
...
ActionBarCompat: java.lang.IllegalStateException: You need to use a Theme.AppCompat
I am getting a RuntimeException on Android 2.3.5 but I am using Theme.AppCompat (res/values/themes.xml). This is the phone: http://www.gsmarena.com/samsung_galaxy_y_s5360-4117.php
...
How can I remove a button or make it invisible in Android?
How can I remove a button in Android, or make it invisible?
14 Answers
14
...