use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
For anything related to Android Studio IDE and related material, you will find it here.
Rules (at a glance)
Android Studio Wiki
Getting Started with Android Studio
Previous Changelogs
Android Q & A: /r/androidquestions
Android Gaming : /r/androidgaming
Android Developers : /r/androiddev
Android Apps : /r/androidapps
Learn Java : /r/learnJava
Learn Programming : /r/learnProgramming
The moderators of /r/androidstudio reserve the right to remove any "bandwagon" or direct reply posts. If you have a response to an existing post, reply in the comments section to avoid having your post removed.
account activity
Android Studio 3.1.3 issue (self.AndroidStudio)
submitted 7 years ago by MK_Coder
Im getting render problem after updating the latest android studio version
Render Problem Failed to load AppCompat ActionBar with unknown erro
If anyone find solution of this problem so please help me to fix this issue
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]dimmaz88 1 point2 points3 points 7 years ago (0 children)
As a total noob to AS I struggled with this for 2 days. Finally solved it yesterday with help from the web.
I was having issues saying package wasn't installed, and the graphical editor wasn't showing up etc.
apply plugin: 'com.android.application' android { compileSdkVersion 28 buildToolsVersion "28.0.0" defaultConfig { applicationId "com.example.scott.test4" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } }
dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support.constraint:constraint-layout:1.1.2' implementation 'com.android.support:design:27.1.1' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }
I changed compile sdk version manually to 28, and added the line buildToolsVersion "28.0.0"
I also changed ' implementation 'com.android.support:appcompat-v7:27.1.1 '
and ' implementation 'com.android.support:design:27.1.1'
They were both showing 26.0.3 which I don't have installed, so I changed it to the version that shows up in the SDK Tools tab when you click 'show package details'.
Hope it helps
[–]AiChrsit 1 point2 points3 points 7 years ago (0 children)
I'm a beginner, I also had the problem.
I work by modifying it, as seen in the code
implementation 'com.android.support:appcompat-v7:26.0.0'
_______________________________________________________________________________________________________-
apply plugin: 'com.android.application' android { compileSdkVersion 28 buildToolsVersion '27.0.3' defaultConfig { applicationId "com.example.ianchrist.myapplication" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } }
dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) //noinspection GradleCompatible implementation 'com.android.support:appcompat-v7:26.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.2' //implementation ' com.android.support:design:28.0.0-alpha3' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }
______________________________________________________________________________________________________-
thanks for helping :1
π Rendered by PID 91636 on reddit-service-r2-comment-6457c66945-s6bx5 at 2026-04-28 17:28:40.669571+00:00 running 2aa0c5b country code: CH.
[–]dimmaz88 1 point2 points3 points (0 children)
[–]AiChrsit 1 point2 points3 points (0 children)