Android Studio2.2で、急にビルドができなくなった。
Runで実行する「app」がUnknownになって下記エラーになっている。
Error running app: Unknown run configuration type AndroidRunConfigurationType
開発備忘録
Runで実行する「app」がUnknownになって下記エラーになっている。
Error running app: Unknown run configuration type AndroidRunConfigurationType
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<!--背景画像-->
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:id="@+id/hukidasi_image"
app:srcCompat="@drawable/ic_haikeigazou"
/>
<!--中央に載せるテキスト画像-->
<TextView
android:layout_centerInParent="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"
android:gravity="center"
android:text="中央画像"
/>
</RelativeLayout>
Androidアプリから、ブラウザを開く際に、
標準ブラウザ指定で開く方法メモ。
//標準ブラウザで開く intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity"); context.startActivity(intent);
androidアプリで画像とテキストを重ねる方法メモします。
下記はImageViewとTextViewを重ねた例です。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ImageView android:id="@+id/imageview1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/setsuden" android:background="@null" /> <TextView android:text="@+id/TextView01" android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="10sp"> </TextView> </RelativeLayout>
重ねるためのミソは、RelativeLayoutで囲います。
http://boco.hp3200.com/primer/hello02-2.html
上記記事が参考になりました!
androidのウィジェットなどで、丸いウィジェットなど画像で用意したいときに、
画像を透過したいときがある、そんなときは下記透過処理。
ウィジェット用意のXMLに下記ように記述。
<ImageView android:id="@+id/imageview1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/setsuden" android:background="@null" />
下記がみそ。
android:src="@drawable/setsuden" android:background="@null"
http://ccandroid.blogspot.com/2011/04/imageview.html
上記が参考になりました。
ありがとうございます!