This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Solved Your Probs by 3 step] | |
| 1. Open terminal in ubuntu, and then type gedit .profile | |
| 2. paste this text: export ANDROID_EMULATOR_FORCE_32BIT=true | |
| 3. refresh source: source .profile | |
| When no effect, finishing that by restart your device (laptop,pc) | |
| Okkay happy emulate andev ;) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get error when installed openoffice desktop integrations, finally i can solved it by complete removed libreoffice. | |
| sudo apt-get remove --purge libreoffice-core | |
| sudo apt-get remove libreoffice-common |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="id.creatorb.resep" | |
| android:versionCode="1" | |
| android:versionName="1.0" > | |
| <uses-sdk | |
| android:minSdkVersion="8" | |
| android:targetSdkVersion="21" /> | |
| <application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //activity I | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.os.Bundle; | |
| import android.widget.Button; | |
| import android.view.View; | |
| import android.view.View.OnClickListener; | |
| public class AppActivity extends Activity { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package id.creatorb.muslimnews.adapter; | |
| import id.creatorb.muslimnews.post.PostData; | |
| import java.util.ArrayList; | |
| import id.creatorb.androidrssfeed.R; | |
| import android.app.Activity; | |
| import android.content.Context; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package id.creatorb.muslimnews; | |
| import id.creatorb.androidrssfeed.R; | |
| import id.creatorb.muslimnews.adapter.DaftarPostAdapter; | |
| import id.creatorb.muslimnews.post.PostData; | |
| import id.creatorb.refresh.Refresher; | |
| import id.creatorb.refresh.RefresherListView; | |
| import java.io.IOException; | |
| import java.io.InputStream; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="fill_parent" | |
| android:layout_height="wrap_content" | |
| android:paddingBottom="5dp" | |
| android:paddingLeft="16dp" | |
| android:paddingRight="16dp" | |
| android:paddingTop="5dp" | |
| android:background="#00BFFF"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package id.creatorb.muslimnews.splashscreen; | |
| import id.creatorb.androidrssfeed.R; | |
| import android.os.Bundle; | |
| import android.app.Activity; | |
| import android.content.Intent; | |
| import android.view.Menu; | |
| import android.view.MotionEvent; | |
| import android.view.animation.Animation; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <set | |
| xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <translate | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:fromXDelta="0%" | |
| android:toXDelta="0%" | |
| android:fromYDelta="200%" | |
| android:toYDelta="0%" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <alpha | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:fromAlpha="0.0" | |
| android:toAlpha="1.0" | |
| android:duration="3100" /> |