プログラムでAndroidLinearLayoutにマージンを設定するにはどうすればよいですか?
この例は、AndroidLinearLayoutでプログラムでマージンを設定する方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout / activity_main.java
に追加します。<? xml version= "1.0" encoding= "utf-8" ?> <LinearLayout xmlns: android = "https://schemas.android.com/apk/res/android" xmlns: tools = "https://schemas.android.com/tools" android :layout_width= "match_parent" android :id= "@+id/linearLayout" android :layout_height= "match_parent" android :orientation= "vertical" tools :context= ".MainActivity" />>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage app.tutorialspoint.com.sample ; import android.os.Bundle ; import android.support.v7.app.AppCompatActivity ; import android.widget.Button ; import android.widget.LinearLayout ; public class MainActivity extends AppCompatActivity { @Override protected void onCreate (Bundle savedInstanceState) { super .onCreate(savedInstanceState) ; setContentView(R.layout. activity_main ) ; LinearLayout ll = findViewById(R.id. linearLayout ) ; LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams. MATCH_PARENT , LinearLayout.LayoutParams. WRAP_CONTENT ) ; layoutParams.setMargins( 30 , 20 , 30 , 0 ) ; Button okButton= new Button( this ) ; okButton.setText( "some text" ) ; ll.addView(okButton , layoutParams) ; } }
ステップ4 −次のコードをandroidManifest.xmlに追加します
<? xml version= "1.0" encoding= "utf-8" ?> <manifest xmlns: android = "https://schemas.android.com/apk/res/android" package= "app.tutorialspoint.com.sample" > <uses-permission android :name= "android.permission.VIBRATE" /> <application android :allowBackup= "true" android :icon= "@mipmap/ic_launcher" android:label= "@string/app_name" android:roundIcon= "@mipmap/ic_launcher_round" android:supportsRtl= "true" android:theme= "@style/AppTheme" > <activity android:name= ".MainActivity" > <intent-filter> <action android:name= "android.intent.action.MAIN" /> <category android:name= "android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–
-
プログラムでアプリケーションを終了する方法は?
この例は、Androidでプログラムによってアプリケーションを終了する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="ht
-
AndroidでVPNを設定する方法
モバイルデバイスでブラウジングしているときに、より安全な状態を維持したいですか?または、Netflixでのリージョンブロッキングを回避したいですか? VPN(仮想プライベートネットワーク)は素晴らしいオプションです。しかし、AndroidでVPNを設定できますか? AndroidデバイスにモバイルVPNをインストールして使用する方法と、選択するVPNは次のとおりです。スマートフォンでVPNを使用しない場合についても説明します。 なぜモバイルVPNを使用するのですか? 仮想プライベートネットワークは通常、デスクトップコンピューターとルーターに関連付けられています。では、なぜモバイルデバイスで